I'm trying to get a row in the smartsheet calendar that shows the count of runs per month. Is that possible? Right now I have tasks grouped under a common name, and had to create two extra columns, Month of Start Date
=DATE(YEAR([Start Date]@row), MONTH([Start Date]@row), 1)
and Runs in same month
=COUNTIFS([Project Name]:[Project Name], [Project Name]@row, [Start Date]:[Start Date], IFERROR((MONTH(@cell)), 0) = IFERROR(MONTH([Start Date]@row), ""))
I'm trying to get a calendar view that has the runs in the same month separated by project name, and then a final row that has the subtotal of runs for that month. I can make that as an additional column, but how do I add it to the calendar?