We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Hex as a delimiter?

keith-barber
7 - Meteor

Hello,

 

Is it possible to use the Input Tool to define a 'light shade' character a delimited file?  Here is the character:

 

The forum won't let me upload a csv example.

 

Thanks,

-Keith

10 REPLIES 10
JaeLim
Alteryx Alumni (Retired)

JaeLim_0-1677102377204.png


Hi Keith, not too sure if I understood your question correctly, but I've tried using a text input tool to test if ░ can be recognized and be used as a delimiter, looks like it works.

keith-barber
7 - Meteor

Hi JaeLim,

 

It is a CSV with that hex as the delimiter, I can include a screen shot.

apathetichell
20 - Arcturus

throw all your fields in a multi-field formula. select them all. deselect new.

 

use this formula:

ReplaceChar([_CurentField_],CharFromInt(9617),"|")

 

use a recordid. text to columns (split on rows) use | as your delimiter.

 

better?

keith-barber
7 - Meteor

@apathetichell thanks for the response.  I used your suggestion, however the multi-field formula didn't replace.

apathetichell
20 - Arcturus

You posted a different character here - for your character you should use:

ReplaceChar([_CurrentField_],CharFromInt(145)+"%","|")

keith-barber
7 - Meteor

@apathetichell yes that worked, thank you!  Tips on how I can get the data into rows and columns?  I've been trying to use the cross tab but stuck1/

apathetichell
20 - Arcturus

so here's the output - but this isn't right. Problem is the split is off. Can you go back to the ingestion and see some options (ie where it originates from...)

BS_THE_ANALYST
15 - Aurora
15 - Aurora

@keith-barber @apathetichell perhaps this solves the split off issue? Could be completely misunderstanding though

BS_THE_ANALYST_0-1677200307961.png

 

 

All the best,
BS

LinkedIN

Bulien
keith-barber
7 - Meteor

Thanks @apathetichell , I liked the use of the tile tool.

Labels
Top Solution Authors