mbevon:
Do you mean delete all records that have empty fields?
When I need to delete a record from a table based on an empty field I use:
DoCmd.RunSQL"DELETE Minority.*, Minority.Category FROM Minority WHERE (((Minority.Category) Is Null Or(Minority.Category)=' '));"
What this does is, it will delete all records from my Minority table where the field category is Null or has an empty string.