Duplicate Formula
I don't know if a formula will work, but it is worth a shot. I am looking for a formula that will find duplicate rows based on two columns' values. the formula needs to find when the Title has identical numbers while both of them have a current revision value of "Yes". The sheet gets updated daily from an excel report pulled from another program. Is this possible?
Best Answer
-
You would use this in a separate column:
=IF(COUNTIFS(Title:Title, @cell = Title@row, [Current Revision]:[Current Revision], @cell = "Yes")> 1, 1)
If you put this in a flag type column it will highlight the flag on rows where there is more than on of the same Title with a Current Revision of "Yes".
Answers
-
You would use this in a separate column:
=IF(COUNTIFS(Title:Title, @cell = Title@row, [Current Revision]:[Current Revision], @cell = "Yes")> 1, 1)
If you put this in a flag type column it will highlight the flag on rows where there is more than on of the same Title with a Current Revision of "Yes".
-
Perfect
Thank you Sir
-
Help Article Resources
Categories
Check out the Formula Handbook template!