
Originally Posted by
hertfordkc
I misunderstood your question. Your are wanting to prevent the writing of an incomplete record to your table...right?
Yes

Originally Posted by
hertfordkc
I've handled that with VB code in the Form_BeforeUpdate event. If the entries are incomplete, Docmd.CancelEvent
How do I define an incomplete record with a dozen field, but only 4 required?
Is there a better way than this?
Code:
intResponse = MsgBox("Save record?", vbCritical + vbYesNo)
If intResponse = vbNo Then DoCmd.CancelEvent