have a group query with no grouped field, then for each field that you want to check have the following iif expression:
Sum(iif([Field name to check goes here] Is Null,1,0))
if the field is blank (null) it will return a 1 if it isnt blank it will return a 0, then we add up all the 1s :D