B
Branden Fisk
Hello,
I'd like to have the user be able to use the filter
option using drop boxes and be able to stack the filter
criteria. for example, show factory "A" in one filter,
and then run another showing Customer "123". the result
would return all items in Factory A, with custoemr
123.... how can i do that via code?
my code is as follows:
Private Sub cbo_custName_AfterUpdate()
Me.Filter = "CUST_Name = '" & cbo_custName & "'"
Me.FilterOn = True
Me.OrderBy = "RQST_DLVRY"
End Sub
Any help is welcome!!!
Branden
I'd like to have the user be able to use the filter
option using drop boxes and be able to stack the filter
criteria. for example, show factory "A" in one filter,
and then run another showing Customer "123". the result
would return all items in Factory A, with custoemr
123.... how can i do that via code?
my code is as follows:
Private Sub cbo_custName_AfterUpdate()
Me.Filter = "CUST_Name = '" & cbo_custName & "'"
Me.FilterOn = True
Me.OrderBy = "RQST_DLVRY"
End Sub
Any help is welcome!!!
Branden