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.
Q CMT
1 3
1 3
1 3
1 3
1 3
1 3
1 3
1 3
2 3
2 3
3 3
1 5
1 5
2 5
2 5
3 5
3 5
3 5
1 7
2 7
3 7
TRANSFORM Count(Table1.Q) AS CountOfQ
SELECT "CMT" & [CMT] AS Item, Count(Table1.Q) AS TotalQ
FROM Table1
GROUP BY "CMT" & [CMT]
PIVOT "Q" & [Q];
SELECT Query2.Item, Query2.TotalQ, Query2.Q1, Query2.Q2, Query2.Q3, Format([Q1]/[TotalQ],"0%") AS [Q1%], Format([Q2]/[TotalQ],"0%") AS [Q2%], Format([Q3]/[TotalQ],"0%") AS [Q3%]
FROM Query2;