Flag duplicate titles but not if the title is blank
Hiya, I am trying to write a formula that flags entries if the content of the title column is repeated, but I need it to ignore entries that have a blank title. My current one is:
=IF(COUNTIFS([Conference Title]:[Conference Title], [Conference Title]@row > 1, [Conference Title]:[Conference Title], [Conference Title]@row) = "", 1, 0)
The syntax is correct, but it doesn't flag any entries, even when I can see duplicates.
I think the solution is simple and staring me in the face, but I can't seem to get it.
Best Answer
-
Try this:
=IF(AND([Conference Title]@row <> "", COUNTIFS([Conference Title]:[Conference Title], [Conference Title]@row)> 1), 1)
Answers
-
Try this:
=IF(AND([Conference Title]@row <> "", COUNTIFS([Conference Title]:[Conference Title], [Conference Title]@row)> 1), 1)
-
That worked a charm, thank you so much!
-
Help Article Resources
Categories
Check out the Formula Handbook template!