SUMIFS with Working Days
Hello,
I have the following formula that works but I want to adjust it to working days only:
=SUMIFS({Column1}, {Date}, <TODAY(), {Date}, >TODAY(-90), {DE}, ([Column2]@row))
Is there a way to modify this formula to include only working days? I think that the sheet is counting weekends at this moment. I updated the properties of the sheet to specify Mon-Fri, but not sure how to implement "WORKDAY" into the formula. Can you please advise?
Tags:
Answers
-
Do you mean to pull in only the working days from {Date}? If so, try this:
=SUMIFS({Column1}, {Date}, AND(@cell <TODAY(), @cell>TODAY(-90), IFERROR(WEEKDAY(@cell), 0)>= 2, IFERROR(WEEKDAY(@cell), 8)<= 6), {DE}, [Column2]@row)
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!