C
CevinMoses
My bar chart has the following ROW SOURCE:
TRANSFORM Count(*) AS [Count] SELECT [NP_PLATE] FROM [Grading_W-2] WHERE
[SHIFT] = '3' AND [STATUS] LIKE '*F' GROUP BY [NP_PLATE] PIVOT [Potential];
I would like to order the [NP_PLATE] based on thier quantity, now their
name. Each value of [NP_PLATE] is a 4 digit number, but I would like to
order their quantity in order to build a Pareto chart.
See http://en.wikipedia.org/wiki/Pareto_chart for a better description of
what a Pareto chart is. It will help show what I'm looking for.
Thanks,
Cevin
TRANSFORM Count(*) AS [Count] SELECT [NP_PLATE] FROM [Grading_W-2] WHERE
[SHIFT] = '3' AND [STATUS] LIKE '*F' GROUP BY [NP_PLATE] PIVOT [Potential];
I would like to order the [NP_PLATE] based on thier quantity, now their
name. Each value of [NP_PLATE] is a 4 digit number, but I would like to
order their quantity in order to build a Pareto chart.
See http://en.wikipedia.org/wiki/Pareto_chart for a better description of
what a Pareto chart is. It will help show what I'm looking for.
Thanks,
Cevin