Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

MULTI-ROW FORMULA PROBLEMS

kpmg_lc_analyst
7 - Meteor

How do I "copy down" using the multi-row formula?  I have one value that I want to apply to successive null fields in succeeding rows. I want Rows 2-5 to be '017' and row 7 to be '088'. 

 

Row 1: 017
Row 2: [Null]
Row 3: [Null]
Row 4: [Null]
Row 5 [Null]
Row 6: 088

Row 7: [Null]

 

Thanks. 

 

 

3 REPLIES 3
MarqueeCrew
20 - Arcturus
20 - Arcturus
IIF(isnull([Field1]),[Row-1:Field1],[Field1])

If your current row for this field is NULL, then use the prior row value for the field.

 

That should do the trick (after you rename Field1 to being your fieldname.

 

Cheers,

Mark

Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
kpmg_lc_analyst
7 - Meteor

thank you. 

MarqueeCrew
20 - Arcturus
20 - Arcturus

You're welcome.  Glad to help.

Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
Labels