M mohsinhq Registered User. Local time Today, 23:05 Joined Aug 2, 2004 Messages 90 Sep 2, 2004 #1 Is there a command button that can be created to filter by form? i had a look in the wizard but its not there.. or even the vba code would be useful thanks
Is there a command button that can be created to filter by form? i had a look in the wizard but its not there.. or even the vba code would be useful thanks
R ray705 Registered User. Local time Today, 17:05 Joined Feb 3, 2003 Messages 45 Sep 2, 2004 #2 I’m not sure if this is what you are thinking. I have one that will filter the form after selecting a value in a combo box. Code: Private Sub cbDept_AfterUpdate() DoCmd.ApplyFilter , "[HomeDept] = '" & Me![cbDept] & "'" End Sub
I’m not sure if this is what you are thinking. I have one that will filter the form after selecting a value in a combo box. Code: Private Sub cbDept_AfterUpdate() DoCmd.ApplyFilter , "[HomeDept] = '" & Me![cbDept] & "'" End Sub