I see what you mean. I need for only 1 out of the 3 to be true. The way I have it, all of them have to be true before it pulls the record up. I have each one =yes, but as long as one of the values are true, then I need to know it. Is there such a thing as an OR statement?
To me, it sounds as though you would better off with an "IF" statement rather than an "OR" statement in your query
Example:
Show FIELD1 IF xxx=True...
and include each of the three fields in the query. Does that make sense??
If you place the criteria all on the same row of your query, Access requires them ALL to be true. If you place them staggered on different rows, ANY can be true. Different combinations form different logical statements (check the SQL view if you want to see this in a slightly more textual format).