Recent content by m12lrpv

  1. M

    How do I discard empty new records?

    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...
  2. M

    How do I discard empty new records?

    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...
Back
Top Bottom