I am trying to write a query that will tag a record if it meets certain criteria. I have a couple different criteria that I want to separate using OR, but I'm not sure how to do this within the select statement.
I'm am currently getting "0" or "-1" with the following statement:
(
IIf([dollar]>9999.99,">$10,000","")
OR (IIf([dollar]>4999.99,">$5,000","")
OR (IIf([dollar]>999.99,">$1,000","")
)
Ultimately, 1 record could have 3 results. I'd be grouping by this result, so I could have the same record show up 3 times.
Thanks
I'm am currently getting "0" or "-1" with the following statement:
(
IIf([dollar]>9999.99,">$10,000","")
OR (IIf([dollar]>4999.99,">$5,000","")
OR (IIf([dollar]>999.99,">$1,000","")
)
Ultimately, 1 record could have 3 results. I'd be grouping by this result, so I could have the same record show up 3 times.
Thanks