Hi,
I have a formula to tell me if a column contains a digit:
REGEX_Match([CODE], ".*\d+.*")
So i have codes such as "p3sf" so It contains digit. So it would be a true for codes with a digit. would be false for a code "abcd"
However I have 2 codes that shouldnt be "contained as a digit"
For example: salesforce.com - (00d300001g8w) should not be included in the contains digit. same with "invoice_consumer_ 962255191"
All but these codes of my are lower then 10 characters.
How can I alter my regex to exclude these 2 fields?
Thanks.