Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Multi-Row formula tool to fill up the way

JamesG2806
7 - Meteor

Multi-Row formula tool to fill up the way, So i have attached the spreadsheet so I want the following to fill up the way rather then down. If I use te below formula I know it will fill down till it stops seeing Null. 

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

 

But when I use this statement below it only fill's up by one line. Any chance someone could show what I am doing wrong

IF IsNull([Currency]) THEN [Row+1:Currency] ELSE [Currency] ENDIF

2 REPLIES 2
danilang
19 - Altair
19 - Altair

Hi @JamesG2806 

 

The multi-row tool always goes from the top to the bottom.  If you need to go from the bottom to the top, add a RecordID and sort by this recordID descending.   This reverses the order of your records.  Use a Multi-row to fill in what you need and then sort by recordID ascending to get the original order back.

 

Dan 

JamesG2806
7 - Meteor

Perfect thanks for that 

Labels