I have this query:
SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity]
FROM[UnionQuery1]
UNION SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity]
FROM[UnionQuery2];
I want to add two parameters: One that prompts for date range (between1-1-00 and 1-28-00), and one that prompts for product name. I've tried examples that I've seen and nothing is working. Anyone know how to fix this??
Thanks!!!
SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity]
FROM[UnionQuery1]
UNION SELECT[OrderID],[OrderDate],[ProductID],[ProductName],[Quantity]
FROM[UnionQuery2];
I want to add two parameters: One that prompts for date range (between1-1-00 and 1-28-00), and one that prompts for product name. I've tried examples that I've seen and nothing is working. Anyone know how to fix this??
Thanks!!!