Alteryx Designer Desktop Discussions

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

Data cleaning

Feras95p
8 - Asteroid

Dear all,

 

As you can see in the picture below, I have one column which is filled by numbers and some cell are blanks. What I'm looking for is that I want each blank cell to be filled by the same number of the previous cell. For example row 3 and 4 should be filled by 2, 9 should be filled by 1.

 

 

x.PNG 

2 REPLIES 2
Kenda
16 - Nebula
16 - Nebula

Hey @Feras95p 

 

The Multi-Row Formula tool will be your friend in this case!

 

Simply select Update Existing Field at the top of the configuration window and select your Status field. Then use the following expression:

iif(isempty([Status]), [Row-1:Status], [Status])

 

 Like this:

Kenda_0-1590000803879.png

 

Hope this helps!

Feras95p
8 - Asteroid

@Kenda Thank you ! it works great. I will add a new topic after 5 minutes please have a look into it I will be appreciated if you can help me in that topic. Many thanks again. 

Labels