Alteryx Designer Desktop Discussions

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

Joining Data

Devika
8 - Asteroid

Hello,

 

Please help me to join the below data 

 

INPUT    
SedolRecord date2Record date3Record date4
71088992022-03-292022-03-292022-03-29
40319762022-05-162022-05-16 
B1L95G32022-11-012022-11-01 
0287580 2022-12-23 
BJMY6G0 2022-03-31 
BJMY6G0 2022-03-31 
BH6XZT52022-03-24  
2793115  2022-03-24
2793115  2022-03-24
    
    
Output    
SedolRecord date  
71088992022-03-29  
40319762022-05-16  
B1L95G32022-11-01  
02875802022-12-23  
BJMY6G02022-03-31  
BJMY6G02022-03-31  
BH6XZT52022-03-24  
27931152022-03-24  
27931152022-03-24  
12 REPLIES 12
Devika
8 - Asteroid

@binuacs @binuacs 

 

Thanks Binu it works now. Can I request you to help me for the attached sheet also somehow Im trying the same tools but its not working. 

binuacs
20 - Arcturus

@Devika The field name is different in this file, I have adjusted the workflow

 

binuacs_0-1648680673733.png

 

MTecovis
6 - Meteoroid

Just as a question:

 

If the priority of dates goes from left to right, wouldnt it be way more simple to put a formula tool in column "Record date 2" which says sth like:

 

IF [Record date 2] != Null()

THEN [Record date 2]

ELSEIF [Record date 3] != Null()

THEN [Record date 3]

ELSEIF [Record date 4] != Null()

THEN [Record date 4]

ELSE "No Date, lul"

ENDIF

 

Or do I miss an important point?

 

BR

Labels