(Popup SQL): SELECT DISTINCT [Year] FROM [Workshops by site-age] GROUP BY [Year], [State], [Site-Age] ORDER BY [Year] (Popup SQL): SELECT DISTINCT [State] FROM [Workshops by site-age] GROUP BY [Year], [State], [Site-Age] ORDER BY [State] (Column SQL): SELECT DISTINCT [Level] FROM [Workshops by site-age] ORDER BY [Level] ASC (Group SQL): SELECT DISTINCT [Year] FROM [Workshops by site-age] GROUP BY [Year], [State], [Site-Age] ORDER BY [Year] ASC (Detail SQL): SELECT [Year], [State], [Site-Age], SUM([Workshops]*IIf([Level]='Advanced',1,0)) AS [c1], SUM([Workshops]*IIf([Level]='Basic',1,0)) AS [c2], SUM([Workshops]*IIf([Level]='Mini',1,0)) AS [c3], SUM([Workshops]*IIf([Level]='T4F',1,0)) AS [c4] FROM [Workshops by site-age] WHERE ([Year] = 1999) GROUP BY [Year], [State], [Site-Age] ORDER BY [Year] ASC, [State] ASC, [Site-Age] ASC (Detail SQL): SELECT [Year], [State], [Site-Age], SUM([Workshops]*IIf([Level]='Advanced',1,0)) AS [c1], SUM([Workshops]*IIf([Level]='Basic',1,0)) AS [c2], SUM([Workshops]*IIf([Level]='Mini',1,0)) AS [c3], SUM([Workshops]*IIf([Level]='T4F',1,0)) AS [c4] FROM [Workshops by site-age] WHERE ([Year] = 2000) GROUP BY [Year], [State], [Site-Age] ORDER BY [Year] ASC, [State] ASC, [Site-Age] ASC (Detail SQL): SELECT [Year], [State], [Site-Age], SUM([Workshops]*IIf([Level]='Advanced',1,0)) AS [c1], SUM([Workshops]*IIf([Level]='Basic',1,0)) AS [c2], SUM([Workshops]*IIf([Level]='Mini',1,0)) AS [c3], SUM([Workshops]*IIf([Level]='T4F',1,0)) AS [c4] FROM [Workshops by site-age] WHERE ([Year] = 2001) GROUP BY [Year], [State], [Site-Age] ORDER BY [Year] ASC, [State] ASC, [Site-Age] ASC