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
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!