Hello,
I would like to ask you for advice with filtering my data in continuous form, using VBA code.
I have a list of data collected from several tables:

At the top of the list there are fields used for filtering. I have set "AfterUpdate" action in VBA for every filter filed to set filter:
Code:
DoCmd.ApplyFilter , "Done = FALSE And JdeWo LIKE '*" & fWO & "*' AND AsmCase LIKE '*" & Fcase & "*' AND tblProformaType.Type LIKE '*" & fProf & "*' AND tblOrderType.Type LIKE '*" & fOrder & "*' AND tblPartsType.Type LIKE '*" & fParts & "*' AND tblPlanningType.Type LIKE '*" & fPlan & "*' AND tblWarranty.Type LIKE '*" & fWarr & "*' AND Customer LIKE '*" & fCust & "*' "
Filtering is working pretty well, but only if all filtered columns are filled in correctly. If some of filtered field is empty, whole record is excluded from filter.
Here is an example:
1) no filter selected:

- two records for customer _dev_test are shown (one of them has all fields filled in, second record has no data filled in field AsmCase
2) filter for column Customer is applied:

- only one record is selected (record with all fields filled in).
Can you please advice me, how I can modify my VBA code to filter data including empty columns?
Thank you very much
Regards TriFith