I am working on an VBA program which would allow the user to type an address and find the location by matching elements of the address with a database.
Unfortunately, I am having a recurrent problem with the case sensitivity.
For example, when I am using this code :
For i = 11 To lRowB
Range("B" & i).Activate
myResult = IsNumeric(Application.Match(ActiveCell.Value, manilaListRange, 0))
It is gonna compare the value of the active cell to a list of words from my database. Problem is, if in my active cell the word is "miami" or "MIAMI" and only "Miami" is in the database, it won't work...
Other example:
If Range("J6").Value = "tawi" Then
Range("J6").Value = "Tawi-Tawi"
End If
Same problem, only the word written with the same case is gonna work.
How can I get rid of this? It's particularly annoying and I can't rewrite my database in every case combination possible!
Thanks in advance !
See Question&Answers more detail:os