Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Replace formula h elp

wonka1234
10 - Fireball

Hi,

 

I am trying to incorporate the following syntax in my workflow:

 

new column = replace ( old string from column , new string string from column)

 

But when I try to do this in a formula, it is overriding the target completely.

 

Replace('function group  ', [Name], '')     (space after function group is on purpose)

 

will get me :

 

"function group " in my column, where its should be IF "function group " exists make it null.

 

Can anyone help with this?

 

 

2 REPLIES 2
Qiu
21 - Polaris
21 - Polaris

@wonka1234 
It will better you can provide a sample input  and desired output. 😁
My first glance tells that your formula seems not correct?
Replace('function group  ', [Name], '')   --> Replace([Name],'function group  ',  '') 

allwynthomas24
11 - Bolide

Hey @wonka1234,

 

Replace Function Takes 3 parameters buddy.

 

Syntax: Replace(String, Target, Replacement)

String = Column Name which contains your original text

Target = This can be the entire above column or you may enter a part of values in that column.

Replacement = Column name that contains your replacement text.

 

Please check the attached workflow for better understanding.

 

Thanks & Regards.

Labels
Top Solution Authors