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!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 430 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!