The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Mar 07, 2021 09:05 AM
In my example, the fields “Name” and “Code” should start with the exact same 10 digits. I’d like to create a formula that compares the first 10 digits of both fields and displays a message if they match. Since the content of the “Name” field gets entered independently from the “Code” field, I’d like to use this formula as a way to check for errors.
I started with the following formula:
IF(
AND(
REGEX_MATCH(Name,’\w{10}\b’),
REGEX_MATCH(Code,’\w{10}\b’)
),
‘Codes Match!’,’’)
I am realizing now, this formula only looks for 10 digits, regardless of content. Not good.
How do I specify that the first 10 digits of both fields have to be identical to display a positive result?
Is using LEFT(Name,10) and LEFT(Code,10) the right way to go? If yes, how would I work them into a formula? I can’t seem to figure that out.
Thank you in advance!
Solved! Go to Solution.
Mar 07, 2021 10:16 AM
Either REGEX_MATCH or LEFT would work.
Right now you’re just checking if there is a value for both {Code} and {Name}. With either REGEX or LEFT, you’d add a third condition to your AND() to check if they’re identical.
IF(
AND(
{Name},
{Code},
LEFT({Name}, 10) = LEFT({Code}, 10)
),
"Codes Match!",
""
)
Mar 07, 2021 10:16 AM
Either REGEX_MATCH or LEFT would work.
Right now you’re just checking if there is a value for both {Code} and {Name}. With either REGEX or LEFT, you’d add a third condition to your AND() to check if they’re identical.
IF(
AND(
{Name},
{Code},
LEFT({Name}, 10) = LEFT({Code}, 10)
),
"Codes Match!",
""
)
Mar 07, 2021 11:36 AM
Thank you so much, @Kamille_Parks !
Mar 07, 2021 12:00 PM
@Kamille_Parks - one more question: in my “real world” base, the field {Code} is a lookup field.
When I try your formula pointing to that lookup field, I get an #ERROR!.
Is there a way to turn the lookup field into a text string?
Mar 07, 2021 12:06 PM
I just found the answer - if {Code} is a Lookup field, the formula needs to say:
IF(
AND(
{Name},
{Code},
LEFT({Name}, 10) = LEFT(ARRAYJOIN({Code}), 10)
),
“Codes Match!”,
“”
)