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!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.9K Get Help
- 429 Global Discussions
- 147 Industry Talk
- 487 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 151 Just for fun
- 74 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!