I have about 9 fields on a form that I want to check to make sure they aren't null when a user hits a 'save record' button, and suspend the save action until all the fields have data...
I have individual "If IsNull(Field) = True Then
send error to user and redirect error to field" for each field in the Save statement, but I cannot get them to work.
Is there an easier/correct way of doing this? I don't know anything about loops but I was wondering if I could use a loop/for...each, etc? Or is there a way to define a list of fields as one unit and then have a statement check each member of the unit?
Thanks so much for any help!!
I have individual "If IsNull(Field) = True Then
send error to user and redirect error to field" for each field in the Save statement, but I cannot get them to work.
Is there an easier/correct way of doing this? I don't know anything about loops but I was wondering if I could use a loop/for...each, etc? Or is there a way to define a list of fields as one unit and then have a statement check each member of the unit?
Thanks so much for any help!!