I need to run a query that will give me "NE" as the answer when my field meets certain criteria. I need it to say "NE" when the field has a value between 5 and 200 and "Formal" when the value is between 200 and 2000.
Here is the query as it already has some filters build in to it.
SELECT Mission2.AIRBILL_NBR, Mission2.TRACKING_NBR, Mission2.entry_type_cd, Mission2.pri, Mission2.rls, Mission2.cst, Mission2.PLS, "NE" AS dest_total_customs_amt, Mission2.bts_reason
FROM Mission2
WHERE (((Mission2.rls) Is Null) AND ((Mission2.PLS) Is Not Null) AND (("NE") >5 <200))
ORDER BY "SI";
Thanks in advance for any help you can give me on this.
Thomp
Here is the query as it already has some filters build in to it.
SELECT Mission2.AIRBILL_NBR, Mission2.TRACKING_NBR, Mission2.entry_type_cd, Mission2.pri, Mission2.rls, Mission2.cst, Mission2.PLS, "NE" AS dest_total_customs_amt, Mission2.bts_reason
FROM Mission2
WHERE (((Mission2.rls) Is Null) AND ((Mission2.PLS) Is Not Null) AND (("NE") >5 <200))
ORDER BY "SI";
Thanks in advance for any help you can give me on this.
Thomp