A
AJ
I have the following sql code that I grabbed from the sql view:
TRANSFORM Max(ChartQuery.amount) AS MaxOfamount
SELECT ChartQuery.period
FROM ChartQuery
GROUP BY ChartQuery.period
PIVOT ChartQuery.store;
My question is that I do not want to use an aggregate for the amount? If the
amounts ranges from 0 - 100000 then that is what I would like displayed on
the left (y) of the chart.
Can this be done, it seems simple enough?
HELP!
TRANSFORM Max(ChartQuery.amount) AS MaxOfamount
SELECT ChartQuery.period
FROM ChartQuery
GROUP BY ChartQuery.period
PIVOT ChartQuery.store;
My question is that I do not want to use an aggregate for the amount? If the
amounts ranges from 0 - 100000 then that is what I would like displayed on
the left (y) of the chart.
Can this be done, it seems simple enough?
HELP!