I have a table with Orders Confirmed with Products A to C for which the orders are delivered or not.
I want to see the output with Confirmed orders which were not delivered to customer for each product category;
I dont want to do the crosstab query for each procuts seperatly so used sql but i have the issue in get the required output please help.
i used
SELECT Query1.[CONFIRMED], Count(Query1.Product_A) AS CountOfProduct_A, Count(Query1.Product_B) AS CountOfProduct_B, Count(Query1.[Product_C]) AS [CountOfProduct_C]
FROM Query1
WHERE (((Query1.Product_A)=False) AND ((Query1.Product_B)=False) AND ((Query1.[Product_C])=False))
GROUP BY Query1.[CONFIRMED];
I also attached Query1 result in excel and my requied out put in the Zip file.
please help.
I want to see the output with Confirmed orders which were not delivered to customer for each product category;
I dont want to do the crosstab query for each procuts seperatly so used sql but i have the issue in get the required output please help.
i used
SELECT Query1.[CONFIRMED], Count(Query1.Product_A) AS CountOfProduct_A, Count(Query1.Product_B) AS CountOfProduct_B, Count(Query1.[Product_C]) AS [CountOfProduct_C]
FROM Query1
WHERE (((Query1.Product_A)=False) AND ((Query1.Product_B)=False) AND ((Query1.[Product_C])=False))
GROUP BY Query1.[CONFIRMED];
I also attached Query1 result in excel and my requied out put in the Zip file.
please help.