The following code is used to open a form with specific criteria problem is that once the criteria is met and the form is open if I want to goto the next or previous record of that employee it wont let me how do I remove the second part of the filter once its used on open
so once the form is open I need to remove [Inbound.tblRRound] = " & tblRRound & "" of the filter???
Code:
DoCmd.OpenForm "Inbound", , , "[Inbound.tblInitials] = " & """" & Me.tblInitials & """ AND [Inbound.tblRRound] = " & tblRRound & ""
so once the form is open I need to remove [Inbound.tblRRound] = " & tblRRound & "" of the filter???