I'm using a text field in a continuous form to show Y or N or just leave blank if nothing is filed in yet.
To filter out the records, I'm using a combobox with a filter like this
This works fine if the field was filed in. But I can't find a way to use this combobox to show only empty fields.
Any way I can show empty records that have an empty [tested] field?
To filter out the records, I'm using a combobox with a filter like this
Code:
If Not IsNull(Me.cboYN) Then
strWhere = strWhere & "([Tested] = """ & Me.cboYN & """) AND "
End If
This works fine if the field was filed in. But I can't find a way to use this combobox to show only empty fields.
Any way I can show empty records that have an empty [tested] field?