G
Guest
The SQL view of my query is as follows:
SELECT IIf([Order]>819000000,"PP02","PP01") AS Type, Sum([tblWIP].[Amount])
AS Amt
FROM tblWIP
GROUP BY IIf([Order]>819000000,"PP02","PP01");
How do I add a calculated field that will compute % of WIP $ by Order Type?
For Example:
Type Amount Pct
PP01 $45,000 56.25
PP02 $35,000 43.75
TIA,
Craig
SELECT IIf([Order]>819000000,"PP02","PP01") AS Type, Sum([tblWIP].[Amount])
AS Amt
FROM tblWIP
GROUP BY IIf([Order]>819000000,"PP02","PP01");
How do I add a calculated field that will compute % of WIP $ by Order Type?
For Example:
Type Amount Pct
PP01 $45,000 56.25
PP02 $35,000 43.75
TIA,
Craig