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

Column Data Indenting

SR
8 - Asteroid

HI All,

 

I have a main column which is merged from 3 different columns.

 

Level 1

Lvl123Merged Column
ABC  ABC
 XYZ XYZ
  defdef

 

what i am trying to do is indent on the merged column when lv1 is null.

output desired

ABC

 XYZ

 def

 

How do i achieve this?

thanks

SR

1 REPLY 1
KaneG
Alteryx Alumni (Retired)

Add a space in between merging... So the formula for Merged Column would be:

TrimRight([Lvl1] + ' ' + [2]  + ' ' + [3])

Labels