G gregor_davies Guest May 7, 2004 #1 How do I make all fields on a form mandatory, these fields are not necessarilly mandatory in the table but required if you are filling in the form. Greg
How do I make all fields on a form mandatory, these fields are not necessarilly mandatory in the table but required if you are filling in the form. Greg
spacepro Registered User. Local time Today, 23:12 Joined Jan 13, 2003 Messages 714 May 7, 2004 #2 Welcome to the forum! There are several ways, Use the validation rule on each field or alternatively put code on the beforeupdate/insert events something like: Code: If IsNull(me.text1) then 'do something here End if I would use validation though, use the search function of the forum and you will find loads of posts that relate to validation rules. Andy
Welcome to the forum! There are several ways, Use the validation rule on each field or alternatively put code on the beforeupdate/insert events something like: Code: If IsNull(me.text1) then 'do something here End if I would use validation though, use the search function of the forum and you will find loads of posts that relate to validation rules. Andy