Trying to use sumif with dates
I am trying to sum values from Study column which only have a value in start date column less than today's date.
=SUMIF([start date]1:[start date]9, "<"&today, [Study]1:[Study]9)
the result is #UNPARSEABLE and I don't know why. Does anybody have advice?
ex:
start date Study sum
11/1/17 12
11/1/18 3
12
Comments
-
I recently did this in one of my sheets.
The first one will give you the total for anything less than today. The second one will give you anything greater than the day. I also know that you can put specific parameters on the dates - meaning if I wanted to look at the current date plus the last 3 days, you can add -3 in between the parentheses
=SUMIF([Start Date]1:[Start Date]9, <=TODAY(), Study1:Study9)
or
=SUMIF([Start Date]1:[Start Date]9, >=TODAY(), Study1:Study9)
Using -3:
=SUMIF([Start Date]1:[Start Date]9, >=TODAY(-3), Study1:Study9)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.1K Get Help
- 430 Global Discussions
- 149 Industry Talk
- 490 Announcements
- 5.2K Ideas & Feature Requests
- 85 Brandfolder
- 154 Just for fun
- 74 Community Job Board
- 499 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!