Mar 19, 2019 08:43 AM
So, among many other uses, my business hopes to use AirTable as a lightweight CRM.
Within our use records, some email addresses will be duplicated (why there are duplicates is a whole different challenge). When we go to email a set of email addresses is there an easy way to avoid sending duplicate emails?
-Peter
Mar 19, 2019 10:28 AM
For emails, you are about to send create a table (the primary field can be a date). Link the contacts you’d like to send emails to. If the primary field is an email it will only link to the first email in the list. And you’re done no dups.
If you have a different primary field you’ll need to create a rollup field. Select contacts and then the email field. Now ARRAYUNIQUE({values}). Now you should be good no dups.
(Both these method only work if all of your duplicate emails are in the same case)
Mar 19, 2019 10:36 AM
If you can I’d suggest deduping. It’s fairly easy.
Also if you pay for pro you can also just use the Dedup block…
Mar 25, 2019 09:34 AM
Sorry for the delay in replying. Ideally we would have no dupes. But the situation is this:
We’re managing a large table of investors, 300 or 400 and growing.
Most people are just that – people. They have an email address.
About 10% of the investors are legal entities – trusts, llcs and the like. They also have a contact email.
But frequently a person invests with us both as an person, say John Doe with an email address of john@doe.com as well as an an legal entity such as John Doe Family Trust… with the same email address – john@doe.com.
We explored the option of having a separate table for all the legal entities but it because a big mess. It seemed easier to just have each investor as its own row and deal with the email duplication problem as it seemed to be the only complication.
I’ll try one of the options you detail above. Thanks.