Adding days from a date column

Hi,

I'm looking to do a monthly, weekly and daily average figure for calls logged. Being as calls won't be logged every day of the year and there are personal holidays within the team to consider, I can't do this with a simple calculation.

I currently have an automatically updated closure date column so in theory if someone closes a call on a date, that proves they are working that day. I would like to use that as my guide for number of days working.

Anyone got any ideas on how I can count the days by month, week and day to use for creating the averages?

Best Answer

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    Ok. To get started with counting how many days per month and per year, you would use something along the lines of...


    For May of 2021:

    =COUNTIFS([Closure Date]:[Closure Date], AND(IFERROR(MONTH(@cell), 0) = 5, IFERROR(YEAR(@cell), 0) = 2021), [Assigned To]:[Assigned To], "John Doe")


    For all of 2021:

    =COUNTIFS([Closure Date]:[Closure Date], IFERROR(YEAR(@cell), 0) = 2021, [Assigned To]:[Assigned To], "John Doe")

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!