I have the following event procedure:
Private Sub Form_AfterUpdate()
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
DoCmd.SetWarnings False
If [TYPE] <> "CHEST X-RAY" Then DoCmd.OpenQuery "UPDATE - TB DUE DATE"
DoCmd.SetWarnings True
End Sub
For the life of me, I cannot figure out how to incorporate additional criteria.
I would like it to run on the additional conditions that If [TYPE]= "MANTOUX" WHERE [RESULTS] isnotnull
or If [RESULTS] <> "COMPLETED"
Any help in writing this would be much appreciated, as I am not adept at writing code and I have read for hours on how to write this and still cannot figure it out. Thank you.
If this doesn't make sense, I can try and clarify further

Private Sub Form_AfterUpdate()
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
DoCmd.SetWarnings False
If [TYPE] <> "CHEST X-RAY" Then DoCmd.OpenQuery "UPDATE - TB DUE DATE"
DoCmd.SetWarnings True
End Sub
For the life of me, I cannot figure out how to incorporate additional criteria.
I would like it to run on the additional conditions that If [TYPE]= "MANTOUX" WHERE [RESULTS] isnotnull
or If [RESULTS] <> "COMPLETED"
Any help in writing this would be much appreciated, as I am not adept at writing code and I have read for hours on how to write this and still cannot figure it out. Thank you.
If this doesn't make sense, I can try and clarify further