COUNTIFS and SUMIFS with a Date Range
Hello,
I'm trying to count the number of cells that have a date in the year 2020. This is the formula that is returning "0" which is incorrect:
=COUNTIFS([Column 1]:[Column 1], <=DATE(2020, 12, 31), [Column 1]:[Column 1], >=DATE(2020, 1, 1))
Additionally, I want to sum the values that correspond to this date range, and this formula is returning an invalid operation error:
=SUMIFS([Column 1]:[Column 1], <=DATE(2020, 12, 31), [Column 1]:[Column 1], >=DATE(2020, 1, 1), [Proceeds Amount]:[Proceeds Amount])
Best Answer
-
Your countifs formula returns a value for me. You might want to check your data type inside of your column 1.
Your sumifs formula is in the incorrect syntax. The summed column is referenced at the beginning not the end.
=SUMIFS([Proceeds amount]:[Proceeds amount], [Column 1]:[Column 1], <=DATE(2020, 12, 31), [Column 1]:[Column 1], >=DATE(2020, 1, 1))
Answers
-
Your countifs formula returns a value for me. You might want to check your data type inside of your column 1.
Your sumifs formula is in the incorrect syntax. The summed column is referenced at the beginning not the end.
=SUMIFS([Proceeds amount]:[Proceeds amount], [Column 1]:[Column 1], <=DATE(2020, 12, 31), [Column 1]:[Column 1], >=DATE(2020, 1, 1))
-
You are correct on both! Thank you very much for your help!
-
@L@123 Would love your input on my sheet and formula here. I have a very similar issue, however 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
-
Apologies for the delay, i've been away for covid reasons.
1.
=SUMIFS([Proceeds amount]:[Proceeds amount], [Column 1]:[Column 1], <=DATE(2020, 12, 31), [Column 1]:[Column 1], >=DATE(2020, 1, 1))
This is formatted correctly. Generally I prefer to place an @cell reference instead of leaving statements open ended such as @cell <= Date(2020, 12, 31) as it is a good practice to get into, but it should still work.
2.
=SUMIFS({type}, ="Pallet Tracking", {date}, <=DATE(2020, 3, 31), {date}, >DATE(2020, 3, 1), {total cost})
{total cost} should be at the beginning of the statement rather than the end. If this doesn't fix the problem you should double check that your ranges are actually set, you can do this by putting your cursor somewhere in the reference then select "Edit Reference" on the dropdown. I would check each of them to make sure they reference the correct data set. They must each also contain the same amount of cells.
=SUMIFS({total cost}, {type}, ="Pallet Tracking", {date}, <=DATE(2020, 3, 31), {date}, >DATE(2020, 3, 1))
3.
=SUMIFS({total charge}, {daterange}, <=DATE(2020, 4, 30), {date range}, >=DATE(2020, 4, 1))
Formatted correctly, make sure that there are no error in the data, and make sure your references are correct (Same as in answer 2)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!