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
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!