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
It is a bit of hack but will do the task.
Function equalsIgnoreCase(str1 As String, str2 As String) As Boolean equalsIgnoreCase = LCase(str1) = LCase(str2) End Function