Alteryx Designer Desktop Discussions

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

Aligning data from different rows

GosiaK
7 - Meteor

Hi, My data is in a format where the description is in row 1 but values in row 2 and 3, or description in line 5 and values in line 6. What would be the best way to align my data into one row or get the descriptions populated in the blank cells below in the same column if the cells are empty?

3 REPLIES 3
Christina_H
14 - Magnetar

It's hard to know exactly what will work without seeing your data, but I would try updating the description field with a multi-row formula.  I'm assuming you have some sort of ID field to know when rows refer to the same thing?

if [ID]=[Row-1:ID] then [Row-1:Description] else [Description] endif

mceleavey
17 - Castor
17 - Castor

@GosiaK ,

 

to help @Christina_H et al, can you provide a mock up of your data (but make sure it's representative of your real data)?

 

Thanks,

M



Bulien

GosiaK
7 - Meteor

Thank you @Christina_H the multi-row formula did the trick.

Labels