Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Duplicate Rows Value

Mostafa_Anwar
8 - Asteroid

Hi All,

 

I want to create duplicate rows for specific values, Below is the current dataset

Current Data.jpg

I want to achieve the below:

 

Untitled.jpg

Attached is the dataset.

 

Thanks in advance.

 

Regards,

 

2 REPLIES 2
danilang
19 - Altair
19 - Altair

Hi @Mostafa_Anwar 

 

You can do this with a Multi-row tool configured like this

 

if isnull([F1]) then
	[Row-1:F1]
else
	[F1]
endif

giving you 

r.png

 

Dan

 

Mostafa_Anwar
8 - Asteroid

Many thanks Dan!

Labels