SUMIFS Summary Formula Issue

Good afternoon -
I am trying to create a summary formula that sums the values in the range from Shared Inboxes to Metrics if the Date column is between 11/1/23 and 11/30/23.
I've created the following formula; however, it's returning #INCORRECT ARGUMENT SET.
Any suggestions? Thank you!!
=SUMIFS([Shared Inboxes]:Metrics, Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30))
Best Answer
-
I would suggest the following things:
Add another column to sum the range for the rows. So use this as the column formula in the new helper column:
=SUM([Shared Inboxes]@row:Metrics@row)
Suppose this helper column is named as "Summation"
Then use the following formula as your summary formula where it is needed:
=SUMIFS(Summation:Summation, Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30))
Senior Business Intelligence Analyst
Augmedix Bangladesh
(A Commure Company)
shimanta@augmedix.com
Answers
-
I had something similar I could pull from and used one like this before.
=IF(AND([Date]@row >= DATE(2023, 11, 1), [Date]@row <= DATE(2023, 11, 30)), SUM([Shared Inboxes]@row:Metrics@row))
-
Hi Justin
I don't believe you can include multiple columns as the range for your SUMIFS
This part in bold
=SUMIFS([Shared Inboxes]:Metrics, Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30))
You may need to create a separate SUMIF for each column and add them together.
=SUMIFS([Shared Inboxes]:[Shared Inboxes], Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30)) +
SUMIFS([Faxes]:[Faxes], Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30)) + ...
Or add a helper column that holds the totals of all those columns (SUM) and then use that as the range in your SUMIFS.
Helper column formula
=SUM([Shared Inboxes]@row:Metrics@row)
Revised SUMIFS formula
=SUMIFS(Helper:Helper, Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30))
Or, as you only have the two criteria, use an IF AND function.
-
Ahh! I was wondering if that was it. Thank you for the help. Very much appreciated!
-
I would suggest the following things:
Add another column to sum the range for the rows. So use this as the column formula in the new helper column:
=SUM([Shared Inboxes]@row:Metrics@row)
Suppose this helper column is named as "Summation"
Then use the following formula as your summary formula where it is needed:
=SUMIFS(Summation:Summation, Date:Date, >=DATE(2023, 11, 1), Date:Date, <=DATE(2023, 11, 30))
Senior Business Intelligence Analyst
Augmedix Bangladesh
(A Commure Company)
shimanta@augmedix.com -
Thank you both!! Very much appreciated!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 68K Get Help
- 474 Global Discussions
- 209 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 85 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!