Struggling with SUMIFS

I am trying to use SUMIFS to total a column from another sheet ({Recap Total Range 3}) with the following 3 criteria - matches unit #, and between two dates, I continue to get either impearsable or incorrect argument and hoping for some help.

=SUMIFS({Recap Total Range 3}, {Recap Total Range 2}, >=$[Start Date]$1, {Recap Total Range 2} <= $[End Date]$1, {Recap Total Range 1}, [Unit #]@row)

Kind regards,

Joe

Tags:

Comments

  • L_123
    L_123 ✭✭✭✭✭✭

    =SUMIFS({Recap Total Range 3}, {Recap Total Range 2}, >=$[Start Date]$1, {Recap Total Range 2}, <= $[End Date]$1, {Recap Total Range 1}, [Unit #]@row)

    you were missing a comma after the second range 2 reference. Side note: it is always a good thing to name your ranges.

    You can make this formula a little more optimized as well. The way posted below does not force the program to recheck range 2.

    =SUMIFS({Recap Total Range 3}, {Recap Total Range 2}, and(@cell&gt;=$[Start Date]$1,@cell<= $[End Date]$1), {Recap Total Range 1}, [Unit #]@row)

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!