I’m trying to create a checkbox formula that’s true when there is more than 1 email address in a text field.
So my approach was to first replace everything else then the @ and then count the found @.
Find(ReplaceRegex([Email], "/[^@]/", ""), "@") > 1
But the ReplaceRegex formula (that ChatGPT generated) does not work.
Does somebody know the correct ReplaceRegex formula?
And if you have a better approach how to conclude if there is more than 1 email address, that’s also welcome ![]()