Hi
I have a form that searches for a match to what is put in a text box.
I have something along the lines of this as the main sql statement
Select * from Qry_Filter where
"[USERNAME] LIKE """ & txt_UserName & "*"""
It works fine however it is case sensitive so if i input something all lower case it will not return a value because for example it has a capital letter to start in the db table.
How can i get round this ?
Thanks
I have a form that searches for a match to what is put in a text box.
I have something along the lines of this as the main sql statement
Select * from Qry_Filter where
"[USERNAME] LIKE """ & txt_UserName & "*"""
It works fine however it is case sensitive so if i input something all lower case it will not return a value because for example it has a capital letter to start in the db table.
How can i get round this ?
Thanks