This is the Deny button, which effectively removes the record from the set:
CODE
Me.ECRReviewed.Value = -1
DoCmd.Save
Me.Requery
DoCmd.Save
Me.Requery
This is the Approve button, which does it's job by sending the information to another form to be edited, but does not remove the approved form from the query results.
CODE
DoCmd.OpenForm "frmECN", , , "[ECNID]=" & Me.ECNID
[Forms]![frmECN]![ReleaseDate] = Date
Me.ECRReviewed.Value = -1
Me.Requery
[Forms]![frmECN]![ReleaseDate] = Date
Me.ECRReviewed.Value = -1
Me.Requery
The approve button should remove the approved record from the form, but it doesn't. Any suggestions on how to fix this?