I wish to have a message box pop up if I have a field that is left empty...I am able to do this through vba code with the following:
If IsNull(P3Temperature.Value) Then
MsgBox ("Enter a Value for Cold Side Item Temperature")
Cancel = True
End If
However, once I get to around 20 of those, my database errors out every time and closes. So, is there another way to have around 20-25 criteria met before an update? I tried the validation of each individual text box, frame, etc and set it to Is Not Null and customized the pop up box; however, it didn't work...it didn't try to match the validation unless something was put in. The purpose of me wanting to do this is to alert the user they forgot a box..any ideas? thanks!
If IsNull(P3Temperature.Value) Then
MsgBox ("Enter a Value for Cold Side Item Temperature")
Cancel = True
End If
However, once I get to around 20 of those, my database errors out every time and closes. So, is there another way to have around 20-25 criteria met before an update? I tried the validation of each individual text box, frame, etc and set it to Is Not Null and customized the pop up box; however, it didn't work...it didn't try to match the validation unless something was put in. The purpose of me wanting to do this is to alert the user they forgot a box..any ideas? thanks!