I have text column in one of my sheets named EN Display Name. That column cannot contain duplicate values, so I added the formula below to a helper column in the sheet to make it more obvious when multiple rows had the same value in the EN Display Name column.
=IF(COUNTIF([EN Display Name]:[EN Display Name], [EN Display Name]@row) > 1, IF([EN Display Name]@row <> "", "DUPLICATE", ""), "")
I just added my first instance of an EN Display Name that was wrapped in the <i> </i>
tags to the sheet and it got flagged as a duplicate. After a bit of trial and error, I discovered that my helper column formula was treating any value starting with the <
character and an immediately adjacent letter as a TRUE result. The same thing happens if the value starts with the >
character, either by itself or with any adjacent character.
Here's a screenshot of a separate sheet I created to do my testing.
Is there any way to get the formula in my helper column to treat these characters a plain text when checking for duplicates?