Using MS Access 2k, Query builder, SQL View.
I have a table that has about 100 fields, all but four of these are boolean(Yes/No) data types. I am attempting to generate a report that will only display the fields that are set to YES. Here is what I have tried to no avail.
SELECT * FROM MyTbl
WHERE MyTbl.* != 0
SORT BY $/Primary Key/$
I tried taking this query and putting that into a report, but suprise suprise, it didn't work. Any suggestions/help would be greatly appreciated.
Thanks in advance!!
JR
I have a table that has about 100 fields, all but four of these are boolean(Yes/No) data types. I am attempting to generate a report that will only display the fields that are set to YES. Here is what I have tried to no avail.
SELECT * FROM MyTbl
WHERE MyTbl.* != 0
SORT BY $/Primary Key/$
I tried taking this query and putting that into a report, but suprise suprise, it didn't work. Any suggestions/help would be greatly appreciated.
Thanks in advance!!
JR