Ok have a form with several charts on it all made from different queries. It appears that when using the chart wizard it creates a crosstab query, I want to sort this query by the SumofDowntime Hours below is the row source code
Code:
TRANSFORM Sum([SumOfSumOfDown]) AS [SumOfSumOfSumOfDown] SELECT [Equipment] FROM [Truck30DayBreakdown] GROUP BY [Equipment] PIVOT [Equipment];
Here is a pictire of the graph
as you can see I would like it in order so the largest number on the right with decreases downtime hours as you go left.
I tried to add an ORDER BY clause in but it didnt work, probably didnt have it in correct syntax or something.
Any help would be appreciated.
Thanks