Alteryx Designer Desktop Discussions

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

Copying Values

grsomer
8 - Asteroid

Hi!

I am working with a file that contains data and a column with descriptions in it. These descriptions are only populated on the first row of each of the same data input, however I would like them populated for all lines of the same data. 

For example, description 1 is populated in row 2, description 2 is only populated in row 7, etc. I want description 1 to be copied from row 2 to row 6, description 2 to be copied from row 7 to row 11, etc. 

Is there a way to do this?

Capture.PNGCapture2.PNG

1 REPLY 1
Thableaus
17 - Castor
17 - Castor

Hi @grsomer 

 

Use Multi-Row Formula Tool.

 

- Update Existing Field Option - Description

 

IF IsNull([Description]) THEN  [Row-1:Description]

ELSE [Description] ENDIF

 

Cheers,

Labels