Help

Re: Substitution formula help

365 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Katie_Stone
4 - Data Explorer
4 - Data Explorer

Hey guys,

I’m hoping someone can help me - I’m such a beginner at formulas!

I am creating a table to hold all my email campaign data. At the moment I’m logging all my data fields.

What I need is a formula that will take a field make like ‘full name’ and turn it into a personalization tag, so the space needs to disappear, it needs to be in caps and I need a % sign at each end, so it would end up looking like this: %FULLNAME%.

I don’t have the very first clue how to go about this so any help you can give me would be pathetically gratefully received.

Thanks in advance!

Katie x

3 Replies 3
AlliAlosa
10 - Mercury
10 - Mercury

Hi there! Try this…

IF({Field}, UPPER("%" & SUBSTITUTE({Field}, " ", "") & "%"))

Hope that helps!

Katie_Stone
4 - Data Explorer
4 - Data Explorer

HOLY GUACAMOLE

That’s amazing, thank you so much.

Can I trouble you to show me how I’d adjust that formula so that instead f getting rid of the spaces, it adds an underscore instead? It would be very helpful for my table, and I think it would help me to see two different formulae and see how they change.

No worries if you don’t have time though, you’ve already been amazingly helpful ❤️

That would be
IF({Field}, UPPER("%" & SUBSTITUTE({Field}, " ", “_”) & “%”))