F
Fipp
I am trying to open a form that filters on several criteria
here are the two conditions:
[gain] >2 and [type] = "special pass"
[gain] >2 and [type] = "pass"
gain is a number field, type is a text field
Here is what I tried:
DoCmd.OpenForm "logfrm", , , "[gain] > 2 AND [type] = 'special pass'" Or
"[gain] > 2 AND [type] = 'pass'"
here are the two conditions:
[gain] >2 and [type] = "special pass"
[gain] >2 and [type] = "pass"
gain is a number field, type is a text field
Here is what I tried:
DoCmd.OpenForm "logfrm", , , "[gain] > 2 AND [type] = 'special pass'" Or
"[gain] > 2 AND [type] = 'pass'"