Okay - The flag will only tell you something is missing though, not what is missing.
If you insist on this the you would have to do it on a form, on the before update event of the form.
The simple code would be something like
Code:
Dim bFieldsComplete as Boolean
If Len(Field1 & "") < 1 OR Len(Field2 & "") < 1 OR Len(Field3 & "") < 1 OR Len(Field3 & "") ...etc etc THEN bFieldsComplete = False
Me.YourCheckField = bFieldsComplete
The more elegant way would be to loop around all the required field controls and check them based on a control tag being set to "Check" or similar.
That way you would only need to add a tag to any additional controls you added.