Alteryx Designer Desktop Discussions

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

Alteryx Breakpoints

berty
8 - Asteroid

Hi, 

 

I'm trying to figure out how to split this data in the same cell - 543<br /> 3573<br /> skm

 

so it shows in the cell as:

 

543

3573

skm

 

any suggestions?

 

 

4 REPLIES 4
RishiK
Alteryx
Alteryx

@berty have a look at the attached workflow.

RishiK_0-1620988196205.png

 



Your delimiter is the <br /> so we can use the Text to Columns to split by rows or columns. In your case, splitting to rows will work.

We are then filtering only the data you need (non empty value).

 

 

berty
8 - Asteroid

I don't need it split to rows, i need it split to new line in cell like so:

 

berty_0-1620988822968.png

 

RishiK
Alteryx
Alteryx

@berty I have amended your workflow to add the Summarize. This allows us to Concatenate the data with a newline (\n) delimiter.

 

RishiK_0-1620989941589.png

 

atcodedog05
22 - Nova
22 - Nova

Hi @berty 

 

You can use a formula something like this

Replace([Field1], "<br /> ", "
")

where you are replacing <br /> with line break

 

Workflow

atcodedog05_0-1620992555146.png

 

 Hope this helps 🙂

Labels