Sub FindNulls()
Dim rst As DAO.Recordset
Dim intI As Integer
Set rst = CurrentDb.OpenRecordset("your_table_name")
If Not rst.BOF And Not rst.EOF Then
While Not rst.EOF
For intI = 0 To rst.Fields.Count - 1
If IsNull(rst.Fields(intI)) Then
Debug.Print rst.Fields(intI).Name
End If
Next intI
rst.MoveNext
Wend
End If
rst.Close
Set rst = Nothing
End Sub