Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.
Free Trial

Alteryx Designer Desktop Discussions

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

How do I fill sequential data while data cleansing?

pbaba
7 - Meteor

I have a table that I need to fill sequential data to complete the table.

 

ProductDateMedal
A1-JunBronze
A1-Jul 
A1-AugSilver
A1-Sep 
A1-Oct 
A1-Nov 
A1-Dec 

 

 

Easy to do this in excel but looking for any ideas on how I can get the table to fall into this format.

 

ProductDateMedal
A1-JunBronze
A1-JulBronze
A1-AugSilver
A1-SepSilver
A1-OctSilver
A1-NovSilver
A1-DecSilver

 

3 REPLIES 3
AngelosPachis
16 - Nebula

Ηι @pbaba ,

 

In Alteryx you can do that with a multi-row formula tool and an IF statement checking if a current cell is null. If it is then grab the value from above, else leave the value in the cell

 

AngelosPachis_0-1615281343806.png

 

Hope that helps.

 

Cheers,

 

Angelos

pbaba
7 - Meteor

@AngelosPachis  Thank you for your help. Is there a way to isolate another variable as such (additional product added):

 

ProductDateMedal  ProductDateMedal
A1-JunBronze  A1-JunBronze
A1-Jul   A1-JulBronze
A1-AugSilver  A1-AugSilver
A1-Sep   A1-SepSilver
A1-Oct   A1-OctSilver
A1-Nov   A1-NovSilver
A1-Dec   A1-DecSilver
B1-JunGold  B1-JunGold
B1-Jul   B1-JulGold
B1-Aug   B1-AugGold
B1-Sep   B1-SepGold
B1-OctPlatinum  B1-OctPlatinum
B1-Nov   B1-NovPlatinum
B1-Dec   B1-DecPlatinum

 

pbaba
7 - Meteor

@AngelosPachis  Ignore. Just saw the GroupBy function in the Multi Row Formula tool. First time using the formula. Thank you for your assistance.

Labels
Top Solution Authors