Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

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
Top Solution Authors