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.