I have now.
Worked a treat. Thanks for that.
Here's how it ended up...
If (IsNull(Me.Hours_Worked) And _
IsNull(Me.Job_Number) And _
IsNull(Me.Cost_Centre_Code) And _
Me.NewRecord) Then
If (IsNull(Me.ID) = False) Then
DoCmd.RunCommand acCmdUndo
End If...
Hi Guy's,
I've got a form which consists of a combo box and a single page form. The combo box filters the form.
Now some of the fields in the table are set as Required: Yes and I want it to stay that way.
When I choose a value in the combo box that doesn't have any associated records in the...