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.

Formula Query

hubyh
7 - Meteor

I have to columns [CRN] and [customer_number]  if these match I then want the entry under the [core_participant] column to be replaced by the entry under [company_name]  Is that possible and if so what would the formula be?  Any help greatly appreciated.  As others have regulary said, I am new to this too

4 REPLIES 4
alexnajm
18 - Pollux
18 - Pollux

IF [CRN]=[customer_number] THEN [company_name] ELSE [core_participant] ENDIF

 

^ This should go into the core_participant column with a Formula tool!

ShankerV
17 - Castor

Hi @hubyh 

 

Please make use of the below formula in the formula tool.

 

IF [CRN]=[customer_number]

THEN [company_name]

ELSE [core_participant]

ENDIF

 

One important aspect is, make sure the data types of the column CRN and customer_number are same.

 

Many thanks

Shanker V

hubyh
7 - Meteor

Thank you Shanker V 

 

Helen

hubyh
7 - Meteor

Thank you.

Labels
Top Solution Authors