Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

How to get Amnt 1 and Currency1 into Amount and Currency column?

vinayvnn
7 - Meteor
AmountCurrencyAmnt1Currency1
1INR  
20INR  
23INR  
55INR  
  22INR
  35INR
  45INR

On the above data, I want Amnt1 to be moved to Amount and Currency1 to be moved to Currency. Any leads will be much appreciated.

3 REPLIES 3
MilindG
12 - Quasar

@vinayvnn Does this work for you?

RaphaelSilva
9 - Comet

Here's another way to achieve the same thing MilindG did, just in case it is easier on your actual dataset

ChrisTX
16 - Nebula
16 - Nebula

Use a Formula tool.  

 

For field Amount: IF IsEmpty([Amount]) THEN [Amnt1] ELSE [Amount] ENDIF

 

For field Currency: IF IsEmpty([Currency]) THEN [Currency1] ELSE [Currency] ENDIF

 

Chris

Labels
Top Solution Authors