Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.
Free Trial

Alteryx Designer Desktop Discussions

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

MultiRow Formula applied to more than one column in a single step

Davidmg1982D
6 - Meteoroid

Im applying succesfuly the folowing formula using the Multi-Row Formula, and I need to apply the same to several columns, is there a way to achive that on a single step? im thinking on the Multi-Field Formula, but how can I translate this formula once I have selected the columns?

 

Thanks ahead for your advice.

 

IF IsNull([Row-1:score]) THEN Null()
ELSE [score]-[Row-1:score]
ENDIF

6 REPLIES 6
Raj
16 - Nebula

I don't think so multi-field formula will work in this case.

Qiu
21 - Polaris
21 - Polaris

@Davidmg1982D 
I usually use a Transpose tool to bring the necessary coloumns into one then do the calculation, then follow with Cross Tab tool

0210-Davidmg1982D.PNG

binuacs
21 - Polaris

@Raj yes, this can be done by transposing the data as @Qiu did

grazitti_sapna
17 - Castor

@Raj , you will have to do exactly what @Qiu suggested. You need to transpose the columns after adding an ID column to identify records on which you want to apply the above calculation and then use Multi-Row Formula.

Sapna Gupta
Raj
16 - Nebula

@Qiu thank you for sharing!

l don't know how I missed this.

Raj
16 - Nebula

@grazitti_sapna @binuacs  Thanks for letting me Know !!

 

Have a great day 

Labels
Top Solution Authors