Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
TRANSFORM Sum([qryRankingAndMedalStandings_BestPrimary_Boys/Girls].Points) AS SumOfPoints
SELECT [qryRankingAndMedalStandings_BestPrimary_Boys/Girls].SchoolName, Sum([qryRankingAndMedalStandings_BestPrimary_Boys/Girls].Gold) AS SumOfGold, Sum([qryRankingAndMedalStandings_BestPrimary_Boys/Girls].Silver) AS SumOfSilver, Sum([qryRankingAndMedalStandings_BestPrimary_Boys/Girls].Bronze) AS SumOfBronze, Sum([qryRankingAndMedalStandings_BestPrimary_Boys/Girls].Points) AS [Total Of Points]
FROM [qryRankingAndMedalStandings_BestPrimary_Boys/Girls]
GROUP BY [qryRankingAndMedalStandings_BestPrimary_Boys/Girls].SchoolName
PIVOT [qryRankingAndMedalStandings_BestPrimary_Boys/Girls].SchoolNo;
SELECT *
FROM qxtbYourCrosstabName
ORDER BY [Total Of Points];