How to add date to formula.
Hi so I am using this formula =SUMIFS([Number of Slides]:[Number of Slides], Done:Done, 0, Status:Status, "Not Started").
I want to also only filter by a certain date. how do I add that. There is another column called "due date" and there are dates in it. How do I only look at stuff due this month by adding it to the formula above.
Thanks in advance.
Answers
-
Below should do it
=SUMIFS([Number of Slides]:[Number of Slides], Done:Done, 0, Status:Status, "Not Started",[due date]:[due date],IFERROR(MONTH(@cell), 0) = MONTH(TODAY()))
-
Is there a way to do the next 30 days instead of just the month of january? I hope that makes sense
-
Do you want to include things that were due in the past?
What about something that does not have a due date?
-
Everything has a due date. No i would not like to include things in the past. Just from today to the next 30 days.
-
Try below:
=SUMIFS([Number of Slides]:[Number of Slides], Done:Done, 0, Status:Status, "Not Started",[due date]:[due date], AND((IFERROR(@cell, "") - TODAY()) <= 30, IFERROR(@cell, "") >= TODAY()))
-
i got an invalid operation error
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 457 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!