James has attended:
Excel VBA Intro Intermediate course
Case sensitive text
When comparing text does it matter if both names are not in the same case?
RE: Case sensitive text
James
Yes. It can matter.
Excel compares the binary values of text as default (eg "A" does not equal "a")
To compare text as default write
Option Compare Text
in the General / Declarations section of the code window
Carlos