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.
Unfortunatel
You can convert both the values to lower case and compare.
Here is an example:
If LCase(Range("J6").Value) = LCase("Tawi") Then Range("J6").Value = "Tawi-Tawi" End If