Welcome to the Smartsheet Forum Archives
The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.
Month Count/Summary as Integer
Comments
-
Dont worry - got it.
Extract Month into new column from Date for each row
=MONTH([Actual Completed Date]1)
Then total up each month (one entry for each month)
="Total DEC - " + COUNTIF(Month:Month, =12)
Not sure if having 12 formulas is the most efficient - but it works
Which can published on Site as a report
-
AHH - LOST IT AGAIN
|If there is not date entered in the date field then =MONTH([Actual Completed Date]1) fails (no month to extract) - which then causes the COUNIF to fail.
What tweak needs to be addded to ensure the =MONTH formula still works even if the Date column has no entry on that row?
many thanks
Chris
-
if(isblank([Actual Completed Date]1),0,month([Actual Completed Date]1))
or one of the other logic statements ; iserror, isdate ?
-
Hm.....there really is no formula to count the # of something for a current month, or last month, using the date column? Seems weird to have create another column that pulls out the month from a date row.