add code to the Current event of the form:
.private sub form_current()
If isnull(field1 + field2 + field3 + ...) then
'Msgbox " your alert"
End if
End sub
If it is a subform, put the codr in the subform.
Use Me.carersfirstname or enclosed in sqr bracket.
You may also use:
If trim(me.carersfirstname & "") = "" then
Msgbox ...
End if
This part is not in a subform. I have several phone number fields, phone, mobile etc. I want to make an alert for when there is no contact number entered. How would I do that?