I am working on a function that will scan a string to see if it has a comma. If I use
Function CommaCheck()
If InStr(“Bob, Frank, James”, “,”) = 0 Then
Debug.Print “No comma”
Else
Debug.Print “At least one comes”
End If
End Function
This properly identifies the comma - however I’m...