So here's my dilema...
As you can see, the crosstab SQL statement that feeds this query doesn't let me sort the date column headers with anything aside from ascending/descending. This causes problems highlighted in yellow where in 2011, Aug is before the other months. Is there a way around this?
Here is the SQL feeding one of the 3 charts:
As you can see, the crosstab SQL statement that feeds this query doesn't let me sort the date column headers with anything aside from ascending/descending. This causes problems highlighted in yellow where in 2011, Aug is before the other months. Is there a way around this?
Here is the SQL feeding one of the 3 charts:
Code:
TRANSFORM Sum(Round([SumOfCount],1)) AS Expr1
SELECT [AAG - Management (incl ORE) - Historical].Management
FROM [AAG - Management (incl ORE) - Historical] INNER JOIN [Date Exclusions] ON [AAG - Management (incl ORE) - Historical].ShortDate = [Date Exclusions].[Short Date]
WHERE ((([Date Exclusions].Exclusion)<>"Exclude"))
GROUP BY [AAG - Management (incl ORE) - Historical].Management, [Date Exclusions].Exclusion
PIVOT Format([ShortDate],"'yy mmm");