If you put
Option Compare Text
at the very top of your module, text comparisons are
automatically done case-insensitive, so there is no need for the
conversion to LCase.
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
"Calle" wrote in message
...
Hi!
I am using this script but it can only read text with small
letters. Can I
change it to read with both small and big letters:
Case Is = "i13"
If LCase(.Value) = LCase("select door") Then
'skipit
End If