Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Splitting data into Columns

Tid14
8 - Asteroid

Hi

I have converted pdf into Excel then taken extract into alteryx but the data is not coming as required

Snapchat-847667428~3.jpg

As the fund and numeric values have merged into similar column.

What i want is to have 3 different Columns 

Namely

Income fund 

62%

0%2

 

and same goes for the second row.

Thanks in advance 🙂

 

2 REPLIES 2
mst3k
11 - Bolide

A simple Regex tool can do this in Parse mode, using the regular expression: (.+?)\s*(\d*%\d*)\s*(\d*%\d*)

 

mst3k_0-1632125435240.png

 

 

atcodedog05
22 - Nova
22 - Nova

Hi @Tid14 

 

Here is how you can do it using regex tool parse mode.

 

Regex: (.+)\s(\d.+)\s(\d.+)

 

Workflow:

atcodedog05_0-1632126411418.png

 

Hope this helps : )

 

Labels