H
Henry
I want to search a list of names, and I want to exclude any names like like
"NY." I know how to do this include names like "NY", but can't find any help
on "not like" expression. Thanks for your help.
Function NYTest(abc)
If abc = "NY" Then
NYTest = "NY"
Else: NYTest = "UNK"
End If
End Function
"NY." I know how to do this include names like "NY", but can't find any help
on "not like" expression. Thanks for your help.
Function NYTest(abc)
If abc = "NY" Then
NYTest = "NY"
Else: NYTest = "UNK"
End If
End Function