Alteryx Designer Desktop Discussions

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

Multi-row formula tool error

NBPSE
8 - Asteroid

I am trying to replace all the [Null] values in a column with the only number in the column using the multi-row formula tool, but the values are not updating. How can I update all Null values with my single number in the column?

 

IF ISNULL([Value])
THEN [Row+1: Value]
ELSE [Value] ENDIF

 

 

4 REPLIES 4
griffinwelsh
12 - Quasar

Sort the single value to the top before the multi row formula. Then use the below formula:

IF ISNULL([Value])
THEN [Row-1: Value]
ELSE [Value] ENDIF

apathetichell
19 - Altair

use a filter tool - filter for the non-null value. append the value back to datastream. This isn't a situation where you'd use a multi-row formula.

Qiu
21 - Polaris
21 - Polaris

@NBPSE 
Multi-Row Formula tool can only do downward calculation. so we have reverse the dataset first to bring the number on top.

0619-NBPSE.png

NBPSE
8 - Asteroid

This worked, thank you!

Labels