View Single Post
  #10   Report Post  
Posted to microsoft.public.excel.programming
Robert Crandal[_3_] Robert Crandal[_3_] is offline
external usenet poster
 
Posts: 161
Default Fast string comparison

"Claus Busch" wrote:

If you use
Option compare Binary
"AAA"< "aaa"
With Option Compare Text both are equal


Nice! If I use "Option Compare Text", then
the following evalutes to true:

"AAA" = "aaa" ' True!

Thanks! I didnt know about that option.