Count of duplicates within the last 90 days
I need a formula to count the duplicate entries of 3 or more within the last 90 days. Then flag the row for a weekly report. I will group flagged row (clients) on a report.
I was able to count the duplicates but need help with the formula to count if it fits the criteria of "Date Created" within the last 90 days. I have a date created column and below is what I have so far.
Please help !
=IF(COUNTIF([ID#]:[ID#], [ID#]@row) > 3, 1, 0)
Best Answer
-
Good evening,
Try:
=IF(COUNTIFS([ID#]:[ID#], [ID#]@row, Created:created, >=TODAY(-90)) > 3, 1, 0)
If your column name is Date Created change the range to [date created]:[date created].
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Good evening,
Try:
=IF(COUNTIFS([ID#]:[ID#], [ID#]@row, Created:created, >=TODAY(-90)) > 3, 1, 0)
If your column name is Date Created change the range to [date created]:[date created].
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
@Mark Cronk Thank you so much - it worked !!!
-
Glad you found a solution. Thank you for contributing to the Community.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!