Hi,
I'm a bit of a access newbie. I've been messing around with queries and ran across an odd issue that I can't seem to resolve.
I have a single table with many records. Each record contains a reference number and multiple check boxes that can be used in any combination.
For example:
Reference - Function 1 - Function 2 - Function 3 - Function 4
Ref_1 ----------X------------X---------------X-------------------
Ref_2 -----------------------X-----------------------------------
Ref_3 ----------X------------------------------------------X-----
Ref_4 -----------------------------------------------------------
Ref_5 ----------X------------X--------------X--------------X-----
My goal here is to generate a query that returns the record if function 1, function 2, function 3, function 4 or any combination of them are used. So in the above example, my goal would be for ref_4 to not be returned because there are no X's associated with it but all other records would.
I thought this would be simple by using the "or" line in design view, but listing out all functions on the or line causes only those with all four functions marked as 'true' to return.
Also, when setting one function in the criteria line, it seems that only the lines that are either marked as true for that specific function OR are marked true for all other functions are returned.
I can't figure out what's going on here..any ideas?