Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Free Trial

Alteryx Designer Desktop Discussions

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

How to drag down data on a column

Taxautomation
6 - Meteoroid

I have data on a column on the first row, then in like row 150, then in like row 450 etc. Each data is different. I want to drag the data down from row 1 to 149, then from 150 to 449 etc. See example below of what my data looks like.

 

 

row 11X10
 

Null

 Null
row 150XYZ
 Null
 Null
 Null
row 450ABC1K

 

1 REPLY 1
Bren_Spill
12 - Quasar
12 - Quasar

Hi @Taxautomation - you will need to use a multi row tool to achieve this. This will allow you to pull data from previous rows and copy it down until you hit a row that has data in it. You will need to update the field with an expression:

 

if isempty([Field]) then [Row-1:Field] else [Field] endif    (will be isnull instead of isempty in your example)

 

Try this and see how it goes

 

image.png

 

 

Labels
Top Solution Authors