When checking if a string is zero-length, it is better practice, and more efficient, to inspect the length of the string rather than comparing the string to an empty string.
Const myString As String = vbNullString
'Prefer this method when checking if myString is a zero-length string
If Len(mySt...