Access is NOT case-sensitive so you can't use the standard comparison
operators to search.
If you are looking for a word (or string) anywhere in the Description field
varWhere =
varWhere & "[Description] LIKE ""*" & Me.txtDescription & "*"" AND "
If you really need to do a case-sensitive search for a word anywhere in the
string you are going to have to use some VBA. Simplest ...



