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(Sales) AS colValue
SELECT Year(vDate) AS [Year], Sum(Sales) AS Total
FROM yourTable
GROUP BY Year(vDate)
PIVOT Format(vDate,'mmm') IN ('Jan','Feb','Mar',...,'Nov','Dec')