Alteryx Designer Desktop Discussions

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

Moving example data to a new field

JamesG2806
7 - Meteor

So I want to move the below data to a new field when its separated by a "." or "-". See below: 

 

10020 · BANK - BMO
10025 · BANK - BMO got
12000 · PETTY CASH:12010 · Petty Cash - Andrea
12000 · PETTY CASH:12012 · Petty Cash - Liz

 

 

So what it should look like is: 

Column 1       Column 2          column 3 

10020              Bank                BMO

10025              Bank                BMO got

2 REPLIES 2
Thableaus
17 - Castor
17 - Castor

Hi @JamesG2806 

 

Here's a dynamic solution for your parsing problem:

 

DynamicSOlution.PNG

- Add a Record ID

- Use Tokenize Method with Regex Tool with the Formula:

(.*?)(?:·|-|$)

Split to rows

- Use Tile Tool to create the sequence of columns

- Use Cross-Tab to divide into columns and group by Record ID.

- Data Cleansing tool to remove leading and trailing whitespaces

 

WF appended.

 

Cheers,

JamesG2806
7 - Meteor

Perfect did the job thanks for that help!

Labels