Important Community update: The process for changing your account details was updated on June 25th. Learn how this impacts your Community experience and the actions we suggest you take to secure your account here.

Alteryx Designer Desktop Discussions

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

Formula or Multiformula Tool

Cferrer6
8 - Asteroid

Hi all, 

 

I have data (shown on screen shot attached) where i have missing "customer #s" and i would like to take the "customer #" from above and fill in the missing one. i feel like i can use the multi row formula but i cant figure out the expression. Any ideas?

3 REPLIES 3
DavidSkaife
13 - Pulsar

Hi @Cferrer6 

 

In it's simpliest form you can use IF ISEMPTY([Customer #]) THEN [Row-1:Customer #] ELSE [Customer #] ENDIF

 

Replace the ISEMPTY part with ISNULL as required depending on the way Alteryx is treating that field

Cferrer6
8 - Asteroid

@DavidSkaife Thank you so much. i kept using "isnull" and it wasnt working. IF ISEMPTY worked!

DavidSkaife
13 - Pulsar

You're very welcome :)

Labels