Hi,
I was wondering if you could help me with a problem. I have 2 combos in an access form and I would like to be able to filter based on both of them.
My first combo has usernames and the second one has company names. So I would like users to be able to pick their name from the first drop down and then pick the company name from the second drop down list so they can see what issues for that company are assigned to them.
I am currently filtering each one using this method as recommended in a previous post:
It works great if I only want to filter one at a time.
Any help you can provide is great! I am using access 2007.
Thanks!
I was wondering if you could help me with a problem. I have 2 combos in an access form and I would like to be able to filter based on both of them.
My first combo has usernames and the second one has company names. So I would like users to be able to pick their name from the first drop down and then pick the company name from the second drop down list so they can see what issues for that company are assigned to them.
I am currently filtering each one using this method as recommended in a previous post:
Code:
Private Sub cboCompany_AfterUpdate() If Not IsNull(Me![cboCompany]) Then Me.Filter = "[Company]='" & Me![cboCompany] & "'" Me.FilterOn = True End If End Sub
Any help you can provide is great! I am using access 2007.
Thanks!
Comment