I need help to formula
FIRST NAME | STATUS |
name:orig | Correct |
nick:orig | name:orig | last1:orig | Correct |
last2:orig | name:orig | Correct |
nick:orig | last1:husband | name:orig | Incorrect |
Scenario 1: if FIRST NAME column contains name:orig then correct else incorrect
Scenarion 2: if FIRST NAME column contains name:orig and contains last*:orig then correct else incorrect . "*" represent any number after last
Thanks in advance
* doesn't work as a wildcard with Contains - you'll have to split it up into Contains last AND contains :orig
Or you'll have to create a Regex_Match to replace it
can i also use Regex_MATCH if FIRST NAME contains but not equal to last*:orig?
@Johmz
I feel that we better split the "First Name" column with delimeter "|" then check with your condition.