M
Momof2
I need to open a report based on three conditions. Contractor, Card, and
Statement, which is provided from combo boxes. I am able to to open the
report based on the Contractor combo box, I'm just not sure how to
incorporate the other two and have them all work together. Here is what I am
using to pull from the contractor combo box. How can I add the other two to
make it all work? Any help is greatly appreicated!
Dim StrWhere As String
StrWhere = "[Contractor] = """ & Me.Contractor & """"
DoCmd.OpenReport "coding", acViewPreview, , StrWhere
Statement, which is provided from combo boxes. I am able to to open the
report based on the Contractor combo box, I'm just not sure how to
incorporate the other two and have them all work together. Here is what I am
using to pull from the contractor combo box. How can I add the other two to
make it all work? Any help is greatly appreicated!
Dim StrWhere As String
StrWhere = "[Contractor] = """ & Me.Contractor & """"
DoCmd.OpenReport "coding", acViewPreview, , StrWhere