I am trying to run a Apply filter for everytime someone opens Form_CC it will only show the Test (Test_ID) they are working on. This seems to be the closest I have gotten to filtering it correctly, however it doesn't work when the form is opened. Is there something I am doing wrong on this?
Private Sub Form_Open(Cance l As Integer)
DoCmd.ApplyFilt er Form_CC.Form.fi lter = "Test_ID = 28"
Form_CC.Form.Fi lterOn = True
End Sub
Private Sub Form_Open(Cance l As Integer)
DoCmd.ApplyFilt er Form_CC.Form.fi lter = "Test_ID = 28"
Form_CC.Form.Fi lterOn = True
End Sub
Comment