Hello,
I need to use a lookup table to search if a key contains a certain text, and not search for exact match of the text.
The lookup key is Website URL.
So if my website url is
www.mywebsite.com/?utm_source=google&utm_medium=cpc&utm_term=tampabrand
I want the formatter to search for
?utm_source=google&utm_medium=cpc&utm_term=tampabrand
and if it finds it, then the value is:
Google AdWords Tampa Brand
And so on and so forth for every UTM I’m using in ad campaigns.
However, my current lookup table is looking for an exact match, and since the lookup key has a URL on the front end of the UTM, it’s not counting it. I can’t enter the full URL as the key because the website URL could be any different page on my website. So I need it to only search for a URL containing the UTM.
How can I achieve this?
Thanks.