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.
SELECT A.Field1, A.Field2, Format(Count(*) /B.Count1,'PERCENT') AS Percentage
FROM yourTable AS A INNER JOIN (
SELECT field1, Count(*) AS Count1 FROM yourTable GROUP BY Field1
) AS B ON A.field1 = B.Field1
GROUP BY A.Field1, A.Field2, B.Count1