Duplicates based on Doc ID and Date
I am trying to write a formula that will checkmark a box if 1 cell matches any other cell in the same column and they both have empty dates cells. I keep getting an unparsable error. I only want to see if there is a duplicate request in cell 1 if they haven't been completed. Empty dates means we are still working the document.
This one works and shows me if there is a duplicate "request" but does not include the date data.
=IF(COUNTIF([Document ID # @]:[Document ID # @], [Document ID # @]@row) > 1, 1)
However, I have no idea how to tell it to check if the two duplicates are in working status.
Best Answer
-
It is going to be very similar to this, but you need a COUNTIFS (with the "S" on the end) instead.
=IF(COUNTIFS([Document ID # @]:[Document ID # @], [Document ID # @]@row, [Date Column]:[Date Column], @cell = "") > 1, 1)
Answers
-
It is going to be very similar to this, but you need a COUNTIFS (with the "S" on the end) instead.
=IF(COUNTIFS([Document ID # @]:[Document ID # @], [Document ID # @]@row, [Date Column]:[Date Column], @cell = "") > 1, 1)
-
Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.8K Get Help
- 439 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 510 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!