Alteryx Designer Desktop Discussions

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

Help with MultiRow Formula tool

ssripat3
8 - Asteroid
 

Expected Input

 

MultiRowFormula_20230313.jpg

 

Expected Output

 

MultiRowFormula_Output_20230313.jpg

 

Hello Community,

 

I am trying to use Multi Row Formula tool to check if a value in Replaces column is not empty. In this scenario, I would like to take the Part Number value and place it in the row above in the column Replaced By.

Any suggestions appreciated and the sample data is available in the yxmd file attached below and thank you for the help.

2 REPLIES 2
MilindG
12 - Quasar
ssripat3
8 - Asteroid

I was able to do it another way.

 

IF IsEmpty([Replaced By]) AND !IsEmpty([Row+1:Replaces]) THEN
[Row+1:Part Number]
ELSE ""
ENDIF

 

I used this formula directly in the Multi-Row formula tool

Labels