Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
We’re experiencing technical issues with our vendor that are affecting license activations for Designer Desktop. We don’t yet have an estimated resolution time. We apologize for the inconvenience and will share updates as we have them.
Start Free Trial

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
rkapoor
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

 

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