G
Guest
I'm trying to run a query that shows specific store numbers. Each property
has multiple stores and I'm creating a range filter for each property, but I
have one property that has a range from 102-154 and I want to exclude stores
122-123. Here's my sql:
SELECT tblMarkdowns.STORE, tblMarkdowns.SKU, tblMarkdowns.DESCRIPTION,
tblMarkdowns.VENDOR, tblMarkdowns.[OLD PRICE], tblMarkdowns.[NEW PRICE],
tblMarkdowns.[ON HAND]
FROM tblMarkdowns
WHERE (((tblMarkdowns.STORE)>="102" And (tblMarkdowns.STORE)<="119" And
(tblMarkdowns.STORE)>="130" And (tblMarkdowns.STORE)<="154"))
ORDER BY tblMarkdowns.STORE;
Please help...
Thank you.
has multiple stores and I'm creating a range filter for each property, but I
have one property that has a range from 102-154 and I want to exclude stores
122-123. Here's my sql:
SELECT tblMarkdowns.STORE, tblMarkdowns.SKU, tblMarkdowns.DESCRIPTION,
tblMarkdowns.VENDOR, tblMarkdowns.[OLD PRICE], tblMarkdowns.[NEW PRICE],
tblMarkdowns.[ON HAND]
FROM tblMarkdowns
WHERE (((tblMarkdowns.STORE)>="102" And (tblMarkdowns.STORE)<="119" And
(tblMarkdowns.STORE)>="130" And (tblMarkdowns.STORE)<="154"))
ORDER BY tblMarkdowns.STORE;
Please help...
Thank you.