I have two queries with different criteria but the data is coming from the same tables. I want to combine the data results in a crosstab query.
Criteria one:
not ({ZIP} in ["08824", "98236"]) and
not ({STATE} in ["NY", "NJ"]) and
not isnull({DELIVERYDATE}) and not isnull ({companyorderDATE})
Criteria TWO:
not ({ZIP} in ["53336", "98236"]) and
not ({STATE} in ["NY", "NJ"]) and
isnull({customerDELIVERYDATE})and isnull({companyorderDATE})
I already have a running total set up in a crosstab using criteria 1. I want to add the results of Criteria TWO.
Is this possible?
Criteria one:
not ({ZIP} in ["08824", "98236"]) and
not ({STATE} in ["NY", "NJ"]) and
not isnull({DELIVERYDATE}) and not isnull ({companyorderDATE})
Criteria TWO:
not ({ZIP} in ["53336", "98236"]) and
not ({STATE} in ["NY", "NJ"]) and
isnull({customerDELIVERYDATE})and isnull({companyorderDATE})
I already have a running total set up in a crosstab using criteria 1. I want to add the results of Criteria TWO.
Is this possible?