Alteryx Designer Desktop Discussions

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

Cross Tab is Replacing space between column names with underscores

saiirangam
8 - Asteroid

I am having around 150 rows that needs to be converted into Column Names, whenever I use Crosstab tool it auto replaces space between the column Names with Underscores is there any way to avoid this, My Column Names are dynamic and keep changing every time.

 

Is there any alternative way to do this rather than using Select tool to renames these column names just to remove Underscore in the headers

 

 

4 REPLIES 4
gautiergodard
13 - Pulsar

@saiirangam 

Yes ! You can use the dynamic rename tool in the developer tool pallet.

Select all of the columns (including dynamic or Unknown Fields) and select Rename mode: Formula

Then use the formula below:

replace([_CurrentField_],"_"," ")

 

gautiergodard_0-1667485182522.png

 

saiirangam
8 - Asteroid

@gautiergodard  Thank you heads up , does this apply for Headers are data?

gautiergodard
13 - Pulsar

@saiirangam Correct, this will apply to the column headers in your data set.

 

Please dont forget to accept this post as a solution if it answered your question!

saiirangam
8 - Asteroid

Thank you it worked 

Labels