Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

SEPARATE THE DATE AND LETTER VALUES FROM A COLUMN

dunkindonut7777
8 - Asteroid

Hi I would like to ask if how could I separate the date type of value from the letter values.

 

From this:

 

Effective Date
& ANNUAL RECOGNITION 2019
0000034179  100820
0000262051 100520
01.13.20
1/1/2020
1/2/2020
010220 RE APP
10319
12720
082020 INCOMPLETE DETAILS
8/17/2020
8/19/2020
8/25/2020
8/27/2020

 

To this:

 

Effective Date
1/1/2020
1/2/2020
8/17/2020
8/19/2020
8/25/2020
8/27/2020

 

Hope you could help me with this one! Thanks

3 REPLIES 3
Qiu
21 - Polaris
21 - Polaris

@dunkindonut7777 
I think we can use RegEx

0129-clodelegonzales.PNG

messi007
15 - Aurora
15 - Aurora

@dunkindonut7777,

 

You can do this with the filter tool using contains "/"

Please see below:

 

messi007_0-1611906296685.png

Hope this help!

Attached the workflow.

Regards

afv2688
16 - Nebula
16 - Nebula

Hello @dunkindonut7777 ,

 

Using a filter tool with the following formula should be enough to get all the dates:

 

REGEX_Match([Effective Date], '\d+/\d+/\d+')

 

Regards

Labels
Top Solution Authors