G
Guest
I'm trying to build a query that will show records where ANY of three
different yes/no values have been selected. Any suggestions?
different yes/no values have been selected. Any suggestions?
Ofer Cohen said:The Yes/No field return -1 for True and 0 for False, so you can try
something
like
Select * From TableName Where
([Field1]+[Field2]+[Field3]) <> 0
If all fields will be False then adding them will return 0
--
Good Luck
BS"D
Scott A said:I'm trying to build a query that will show records where ANY of three
different yes/no values have been selected. Any suggestions?