SUMIFS with a Specific Date Range
Would love someone's input on my sheet and formula here. I'm not able to get the data to pull in correctly.
I want to be able to sum the [Total Cost] for each type of special project by month using the date range like you had explained. The formula would need to look at the [Special Project Type] column then sum [Total Cost] if within the specified date range [Created]. Your assistance is greatly appreciated.
=SUMIFS([Proceeds amount]:[Proceeds amount], [Column 1]:[Column 1], <=DATE(2020, 12, 31), [Column 1]:[Column 1], >=DATE(2020, 1, 1))
=SUMIFS({type}, ="Pallet Tracking", {date}, <=DATE(2020, 3, 31), {date}, >DATE(2020, 3, 1), {total cost}) - Returns “Invalid Operation”
=SUMIFS({total charge}, {daterange}, <=DATE(2020, 4, 30), {date range}, >=DATE(2020, 4, 1)) - Returns “Invalid Reference”
=SUMIF({type}, ="Pallet Tracking", {total cost}) - Returns a sum of all revenue from pallet usage
Best Answer
-
You are going to want something along the lines of...
=SUMIFS({Total Cost Column}, {Type Column}, "Pallet Tracking", {Date Column}, AND(IFERROR(MONTH(@cell), 0) = 3, IFERROR(YEAR(@cell), 0) = 2020))
Answers
-
You are going to want something along the lines of...
=SUMIFS({Total Cost Column}, {Type Column}, "Pallet Tracking", {Date Column}, AND(IFERROR(MONTH(@cell), 0) = 3, IFERROR(YEAR(@cell), 0) = 2020))
-
You are a lifesaver, Thanks.
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 454 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!