We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Repeat All Item Labels

Jeyaraj_M
7 - Meteor

Hi Team,

 

Just a help required. I have the below data

 

OrderIDCONCATENATEDATECODEFACTOR
123456015612345601563/2020G1.26
Check1   s 
245567015724556701573/2020g8.56
Check2   s 

 

Concatenate has to be done only for 1st and 3rd row in the concatenate column and the previous row information has to be filled on the blank cells

 

Output should be in the below format

 

OrderIDCONCATENATEDATECODEFACTOR
123456015612345601563/2020G1.26
Check1 12345601563/2020s1.26
245567015724556701573/2020g8.56
Check2 24556701573/2020s8.56

 

Can someone help me on this please?

 

 

 

 
 

 

7 REPLIES 7
TheOC
16 - Nebula
16 - Nebula

HI @Jeyaraj_M 

I believe I have created a workflow that acheives this:

TheOC_0-1603375124669.png



Using multi-row formula's, if the row contains no value for concatenate or factor, it takes the one from above.

Hope this helps!

Cheers,
TheOC
Connect with me:
LinkedIn Bulien
Jeyaraj_M
7 - Meteor

Thanks for your prompt response.

 

But in the output still the Date column has the null values.

 

My data contains few other column on the same scenario where the blank cells has to be filled from the top row.

 

Can you please help me on that?

mceleavey
17 - Castor
17 - Castor

Hi @Jeyaraj_M ,

 

You would need to copy the multi-row formula tools that @TheOC  has written for each column you want to fill in.  For example, if isempty ([DATE]) then [Row-1:DATE] else [DATE] endif to fix the date field etc.

I would recommend including a Data Cleansing tool after the input if you have leading or trailing spaces.

 

M.



Bulien

atcodedog05
22 - Nova
22 - Nova

Hi @Jeyaraj_M 

 

Here is a workflow for the task.

 

Output:

atcodedog05_0-1603378269342.png

Workflow:

atcodedog05_1-1603378283866.png

I have modified so that a single Mutli-row formula would work on all columns selected in Transpose tool.

 

Hope this helps 🙂


If this post helps you please mark it as solution. And give a like if you dont mind 😀👍

Jeyaraj_M
7 - Meteor

Thank you so much for your help....

TheOC
16 - Nebula
16 - Nebula

hi @Jeyaraj_M 

TheOC_0-1603378629145.png


Here is a solution that works with your data, i just added another multi-row.

However, @atcodedog05 is more elegant for more data columns!

Glad you got it sorted 🙂 

Cheers,
TheOC
Connect with me:
LinkedIn Bulien
atcodedog05
22 - Nova
22 - Nova

Happy to help 🙂 @Jeyaraj_M 

 

Cheers and Happy Analyzing 😀

Labels
Top Solution Authors