Hello,
I've been trying to put a horizontal bar chart on a form, where the underlying data from the query is a single list of numbers.
For example: 3, 9, 7, 7, 2, 5
I want the chart to return the list of numbers without the default action of counting the instances these numbers. I want, in this case, 6 horizontal bars sorted largest to smallest.
9 ---------
7 -------
7 -------
5 -----
3 ---
2 --
The chart, by default will show the COUNT of each number, but I want it to just show each value independently.
Any thoughts on how I can accomplish this?
Thanks.