I want to create a new field for the id highlighted in green. what tool or formula can i use to do that?
Thanks for your help
Campaign Name |
21 Wx utilities and research 7013xxxx - ATL - 10/12 |
21 Agri WBST 7013xxxx |
21 En Refined Energy 7013xxxxx - nov |
21 Wx public safety 7013xxxx |
21 Ag produce 7013xxxx follow up + nurture |
21 Ag Large Grains Stock Q3 MKTG 7013xxxx |
Solved! Go to Solution.
Hi @Cherkos12 ,
You can achieve that with the RegEx Parse tool. Attached is an example that works with your example but would need to be modified if the ID don't always begin with 7013. Here is the expression I used:
(7013.{4})
7013 = find an exact match for the characters "7013"
. = find any character after the "7013"
{4} = find any single character 4 times
Thanks, this worked.