My query has the following on the 'Criteria' line in the design view for the field [TYPE]:
IIf(IsNull([Forms].[frm ARCHIVE].[cbxTYPE]),[TYPE],[Forms].[frm ARCHIVE].[cbxTYPE])
There are 777 records in the table, 19 of which have null values in the [TYPE] field. If I run the query with no criteria, all 777 are returned. With the criteria above entered, making no entry in the [cbxTYPE] combo box, I only get 758 records returned. The nulls are not returned.
What can I do to get the nulls to be returned when I make no entry in the combo box? Thanks.
IIf(IsNull([Forms].[frm ARCHIVE].[cbxTYPE]),[TYPE],[Forms].[frm ARCHIVE].[cbxTYPE])
There are 777 records in the table, 19 of which have null values in the [TYPE] field. If I run the query with no criteria, all 777 are returned. With the criteria above entered, making no entry in the [cbxTYPE] combo box, I only get 758 records returned. The nulls are not returned.
What can I do to get the nulls to be returned when I make no entry in the combo box? Thanks.