Answers for "vba string equality"

VBA
0

vba compare strings

"abc" = "ABC" -> true
Posted by: Guest on July-22-2021
3

vba compare strings

'Removes case sensitivity
Option Compare Text			' a < B
'Adds case sensitivity
Option Compare Binary		' A < B < a < b
'Compare
Debug.Print StrComp(string1, string2, vbUseCompareOption) 'Microsoft Access only
Debug.Print StrComp(string1, string2, vbBinaryCompare)	  'case sensitive
Debug.Print StrComp(string1, string2, vbTextCompare)      'case insensitive
Posted by: Guest on January-23-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language