If you really mean 'have blank values for every field in the table' rather than 'any field in the table', as some of the columns have a Required property of True, to appear to be blank those columns would need to contain a zero length string in the case of a column of text data type, or a zero in the case of a column of a number data type where the lookup wizard has been used in designing the table, and there is no row in the referenced table with a value of zero in the key column (NB this column would probably show a text value in those rows which are not Null or contain a zero). A column of DateTime data type would need to be Null to be 'blank'. You can test for columns appearing to be either Null or 'blank' in the above context by calling the NZ function in a query's WHERE clause, e.g.
SELECT *
FROM x
WHERE LEN(NZ(a,"")) = 0
AND NZ(b,0) = 0
AND c IS NULL;
where x is the name of the table, a is a column of text data type, b is a column of number data type, and c is a column of DateTime data type.
If you do mean 'any field in the table' change the AND operators to OR operators.