Mar 14, 2022 02:18 PM
Hi, I have a list of cities and states, and I want to extract only first state initials. How can I do that?
Thanks
Solved! Go to Solution.
Mar 14, 2022 03:05 PM
Hey @Michael1!
I had a similar use case a long time ago.
Here’s the formula I used back then:
(I added in your field name {City/States})
TRIM(
SUBSTITUTE(
REGEX_EXTRACT(
{City/States},
"(,\s..)"
),
",",
""
)
)
Now, there is a something important to note.
This (specific) formula only works if you have a comma and a space before the state code.
This requires that you must have consistent and clean data in order for the formula to be consistent.
Mar 14, 2022 03:05 PM
Hey @Michael1!
I had a similar use case a long time ago.
Here’s the formula I used back then:
(I added in your field name {City/States})
TRIM(
SUBSTITUTE(
REGEX_EXTRACT(
{City/States},
"(,\s..)"
),
",",
""
)
)
Now, there is a something important to note.
This (specific) formula only works if you have a comma and a space before the state code.
This requires that you must have consistent and clean data in order for the formula to be consistent.