How can I count dates within 90 days?
I want to count how many people are within 90 days of their expiration date if the data is combined across columns from "Exp Date: Pacer" to column "New Exp Date: Walkie/Tugger"? The original formula I tried is the following:
=COUNTIFS([Exp Date: Pacer]@row:[New Exp Date: Walkie/Tugger]@row, ">" & TODAY(), [Exp Date: Pacer]@row:[New Exp Date: Walkie/Tugger]@row, "<=" & TODAY() + 90)
I keep receiving an error message. All columns are adjacent to each other, and all are formatted as date columns, though 4 of them within the range have column formulas linked to another column, but all values in the column are dates.
Is there a way to get this data?
Best Answer
-
If I understand correctly, you are very close. Give this a try:
=COUNTIFS([Exp Date: Pacer]@row:[New Exp Date: Walkie/Tugger]@row, > TODAY(), [Exp Date: Pacer]@row:[New Exp Date: Walkie/Tugger]@row, <= TODAY(90))
Answers
-
If I understand correctly, you are very close. Give this a try:
=COUNTIFS([Exp Date: Pacer]@row:[New Exp Date: Walkie/Tugger]@row, > TODAY(), [Exp Date: Pacer]@row:[New Exp Date: Walkie/Tugger]@row, <= TODAY(90))
-
Thank you so much Carson. Do not add the 90, put it in the parenthesis.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!