How do I validate a large batch of email addresses (70,000)? Is there was a formula flow to help me do that? How do I filter out the data that seems fake (i.e. no @, spaces, etc.)?
Thank you,
Marie
You can build logic that checks if the data contains certain things. For example, depending on your data, you may want to:
- confirm they all contain the @ symbol
- confirm that there is always a domain after the @ symbol (.com, .edu, etc)
All of these are statements that you can build in a Filter tool in some way! If you decide on some criteria, we can try to help from there - otherwise hope this helps
Thank you for reaching out.
I would like to make sure that the data:
You could probably figure out a way to create all these individually, but my suggest is RegEx_Match - filtering based on the values matching a pattern. Try something like this in your Filter: regex_match([Field1], "^\w+@\w+.\w{3}$")
Here's another one I found online: How to create regular expressions (Regex) for email address validation? (boldsign.com). Feel free to search for more - good luck!