Kerry has attended:
Excel VBA Intro Intermediate course
Errors in VBA
How do I find and correct errors in VBA?
RE: Errors in VBA
press the F8 key that walks you through the macro step by step
Forum home » Delegate support and help forum » Microsoft VBA Training and help » vba courses london - Errors in VBA
Kerry has attended:
Excel VBA Intro Intermediate course
How do I find and correct errors in VBA?
press the F8 key that walks you through the macro step by step
When needing to default a String variable back to it's default of "" use vbNullString as in the following example:
Sub ClearText()
Dim strEmpName As String
strEmpName = "John Smith"
MsgBox strEmpName
strEmpName = vbNullString
MsgBox strEmpName
End Sub
Connect with us:
Call for assistance
We will call you back