J
Jason Sweet
Thanks in advance for looking at this!
I have a simple crosstab that looks like:
SKU 02/02/04 11/15/03
0060086157 0.00 2.00
0060505117 2.00 3.00
0060510323 0.00 2.00
0060591838 1.00 3.00
I would like to add (if possible) a simple function that subtracts the value
of "02/02/04" from the value of "11/15/03".
So...
SKU 02/02/04 11/15/03 Difference
0060086157 0.00 2.00 2.00
0060505117 2.00 3.00 1
Any assistance would be greatly appreciated. For reference, I have included
the SQL statement:
TRANSFORM Sum(report.count) AS SumOfcount
SELECT report.SKU, Sum(report.count) AS [Total Of count]
FROM report
GROUP BY report.SKU
PIVOT report.date;
Thanks! Jason Sweet
I have a simple crosstab that looks like:
SKU 02/02/04 11/15/03
0060086157 0.00 2.00
0060505117 2.00 3.00
0060510323 0.00 2.00
0060591838 1.00 3.00
I would like to add (if possible) a simple function that subtracts the value
of "02/02/04" from the value of "11/15/03".
So...
SKU 02/02/04 11/15/03 Difference
0060086157 0.00 2.00 2.00
0060505117 2.00 3.00 1
Any assistance would be greatly appreciated. For reference, I have included
the SQL statement:
TRANSFORM Sum(report.count) AS SumOfcount
SELECT report.SKU, Sum(report.count) AS [Total Of count]
FROM report
GROUP BY report.SKU
PIVOT report.date;
Thanks! Jason Sweet