
Function to return interger with greatest value
Don --
I assume that your records consist of some sort of ID (date, machine,
group, whatever) and then a tally of the incidence of a list of problems.
You might want to consider creating a new table each of which contains the
ID, a problem label or code, and a tally. Then you can just sum and sort
this table. The advantage of this organization is that it can handle
changed problem lists more easily.
-- Roger
Quote:
>I need to create a pareto chart showing the values of multiple fields in
>decending order.