C
Cam
Hello,
I have a form with a unbound field to input to filter out the data, what do
I put in the code to filter two unbound fields instead of one? Other unbound
field is named SelectSide. Thanks
Here is my current code.
Private Sub SelectItem_AfterUpdate()
' Find the record that matches the control.
DoCmd.ApplyFilter , "tbl_Item = Forms!frm_MCHMC_Expect_Edit!SelectItem"
EnableControls Me, acDetail, True
Me!tbl_MCID.Enabled = False
Me!SelectItem.SetFocus
Me!SelectItem.Requery
End Sub
I have a form with a unbound field to input to filter out the data, what do
I put in the code to filter two unbound fields instead of one? Other unbound
field is named SelectSide. Thanks
Here is my current code.
Private Sub SelectItem_AfterUpdate()
' Find the record that matches the control.
DoCmd.ApplyFilter , "tbl_Item = Forms!frm_MCHMC_Expect_Edit!SelectItem"
EnableControls Me, acDetail, True
Me!tbl_MCID.Enabled = False
Me!SelectItem.SetFocus
Me!SelectItem.Requery
End Sub