Hello,
I have a bottum that opens a continous form while applying a filter. What I need to do is apply two filters at the same time. I don't know if its possible. Here's the VBA code that work with just one filter item:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "tblMeterReads subform1"
stLinkCriteria = "[Location]=" & "'" & Me![cboLocation] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Any advise?
Thanks
I have a bottum that opens a continous form while applying a filter. What I need to do is apply two filters at the same time. I don't know if its possible. Here's the VBA code that work with just one filter item:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "tblMeterReads subform1"
stLinkCriteria = "[Location]=" & "'" & Me![cboLocation] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Any advise?
Thanks