Get 40%-off on all premium templates.
Discount code auto-applied at checkout.
One common headache, especially in CRM databases, is finding duplicates. While Notion doesn’t have a built-in feature for this, there’s a quick workaround:
‍
prop("Name") ?
prop("Duplicate Checker").map(current.prop("Items")).replaceAll(" ", "")
.replaceAll("\\b" + replaceAll(prop("Name"), "[ |,]", "") + "\\b", "*")
.replaceAll("[^*]", "")
.length() > 1
: false
‍
This will highlight any duplicate items.
Huge thanks to Sev Estil for the formula! You can download his template here if you want a ready-made setup.