Multiple Value Filtered Query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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*"
 
Back
Top