C
Chad
I have a table (Table1) that has a field referred to as 'Type'. For some of
the records, 'Type' is null and for others there is data in that field.
I would like to run a query that returns the records from thTable1 where
'Type' Is Null based on whether a checkbox is checked on a form, however, I
am unsure as to how to accomplish this. Here is the query that I have now
which is not working:
Select * FROM Table1 WHERE Table1.Type IIF(chkType = FALSE, Is Null, Is Not
Null);
Thank you in advance for your help.
the records, 'Type' is null and for others there is data in that field.
I would like to run a query that returns the records from thTable1 where
'Type' Is Null based on whether a checkbox is checked on a form, however, I
am unsure as to how to accomplish this. Here is the query that I have now
which is not working:
Select * FROM Table1 WHERE Table1.Type IIF(chkType = FALSE, Is Null, Is Not
Null);
Thank you in advance for your help.