stevebanks
Programmer
- Mar 30, 2004
- 93
Hi,
I have a crosstab query that brings in reasons for returns and how much that has cost the company. Currently i have
This is working fine and producing reports etc, BUT, the remainder of the data where no "action" has been assigned doesn't appear as part of the table that is created, therefore the totals don't add up. I have tried adding just
at the end, and that doesnt work either. Any ideas????
Thanks
I have a crosstab query that brings in reasons for returns and how much that has cost the company. Currently i have
Code:
TRANSFORM Sum([Report Data].Value) AS SumOfValue
SELECT[Report Data].[Orig Summary Reason] AS Summary_Reason, Sum([Report Data].Value) AS [Total Of Value]
FROM [Report Data]
GROUP BY [Report Data].[Orig Summary Reason]
PIVOT Format([Report Data].Action,"<>") In ("2nds stock","Break Down for Spares","Customer Kept","Dispose","Received not Processed","Return to Stock","Rework & Return to Stock");
This is working fine and producing reports etc, BUT, the remainder of the data where no "action" has been assigned doesn't appear as part of the table that is created, therefore the totals don't add up. I have tried adding just
Code:
, "");
Thanks