Problem solved (At a loss please help)
I need to have a query run after the record has been saved and only if it is a new record.
I've tried afterupdate event on the form but it doesn't run the query.
Here is the code I put in the afterupdate event.
I'm at a loss
how ever I'm sure it's pretty simple.
Thanks
Joshker
I need to have a query run after the record has been saved and only if it is a new record.
I've tried afterupdate event on the form but it doesn't run the query.
Here is the code I put in the afterupdate event.
I'm at a loss
Code:
If MyForm.NewRecord = True Then
DoCmd.Hourglass True
DoCmd.SetWarnings False
DoCmd.OpenQuery "QRY_Q013"
DoCmd.SetWarnings True
DoCmd.Hourglass False
End If
Thanks
Joshker
Last edited: