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
Comments
-
=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>=$[Start Date]$1,@cell<= $[End Date]$1), {Recap Total Range 1}, [Unit #]@row)
Help Article Resources
Categories
Check out the Formula Handbook template!