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

how to Add space as separator in the values of column.

Bansi08
7 - Meteor

I have values as SeniorLevel, JuniorLevel and MidLevel in column ABC. how can i add space in the values and separate the word as Senior Level, Junior Level and Mid Level. 

Can anyone please help me.  

5 REPLIES 5
FrederikE
13 - Pulsar

Hey @Bansi08,

 

If the seperation always has to happen before 'Level', you can use a simple REPLACE and replace it with the same + a space. 

REPLACE([Field],"Level"," Level"). 

If the logic gets more complicated then just placing it before level, you would prob. need to use Regex and define smth. like a uppercase character to replace with " "+ the letter. 

binuacs
21 - Polaris

@Bansi08 One way of doing this as mentioned by @FrederikE 

 

binuacs_0-1662377428644.png

 

Bansi08
7 - Meteor

Thanks Frederik. RegEx function worked for me.

Bansi08
7 - Meteor

Thanks Nebula. RegEx function worked for me.

alt_marsan
8 - Asteroid

Yeah! I was looking for a solution for a similar situation. Appreciate simple solutions. Thanks, @binuacs 

 

-alt_marsan

Labels
Top Solution Authors