Multiple Value Filtered Query

B

Big Dog

I have a 5 character filed that I would like to filter for values "*C*" AND
"*W*". Have not been able to figure out how. Help greatly appreciated.
 
J

John Spencer

If you mean the field must contain C or W
Fielda Like "*[cw]*"

If you mean the field must contain both
Fielda Like "*c*" and Fielda like "*w*"
 
Top