Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Replace " with character. How to reference "

wonka1234
10 - Fireball

Hi,

 

Say I have the formula -

 

Replace([Name], """, "_")

 

I have a " inside "" .

 

How do I make this work?

2 REPLIES 2
binuacs
21 - Polaris

@wonka1234 use single quotes 

 

Replace([Name], '"', "_")

DavidSkaife
13 - Pulsar

Hi @wonka1234 

 

For this specific use case you'll have to replace the """ entirely rather than just the " within the ""

replace([Name],'"""','"_"')

 

Labels
Top Solution Authors