Alteryx Designer Desktop Discussions

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

Multi-Row Forumal - why isn't this working, does not give error.

brendafos
10 - Fireball

Here's what the data I'm trying to act on looks like:

multi-row01.png

 

I want to copy down from the row above where the data is [Null]

 

Here's the forumla I've got in the Multi-Row Formula tool -

There are two examples - neither works or gives an error?

 

1)

IF [Row+1:T-D-S] == "[Null]" then [T-D-S]
else [T-D-S]
endif

 

2)

IF isnull([Row+1:T-D-S]) then [T-D-S]
else [T-D-S]
endif

 

IF it worked then in column T-D-S, in row 2 it would say 'Dublet'

 

Any ideas why this does not give an error or work? 

What else might I try? 

 

3 REPLIES 3
MarqueeCrew
20 - Arcturus
20 - Arcturus

Hint:  the row above is row-1. 

 

Spoiler
iif(isnull(T-D-S),[row-1:T-D-S],[T-D-S])

 My iPhone answer is inside of the spoiler tag. 

Alteryx ACE & Top Community Contributor

Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
brendafos
10 - Fireball

Smiley Embarassed

 

Geez.... It is time for me to go home.  Been at this too long.

 

Thank you.

MarqueeCrew
20 - Arcturus
20 - Arcturus

Glad to have helped. 

Alteryx ACE & Top Community Contributor

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