core.noscript.text
Hi,
Say I have the formula -
Replace([Name], """, "_")
I have a " inside "" .
How do I make this work?
@wonka1234 use single quotes
Replace([Name], '"', "_")
Hi @wonka1234
For this specific use case you'll have to replace the """ entirely rather than just the " within the ""
replace([Name],'"""','"_"')