SOLVED
DateTimeParse
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
tessaenns
9 - Comet
‎02-06-2020
06:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
I am trying to parse a field called "checkintime", it is a date time field, but coming through as a V_W string. For example, the value looks like "2020-01-01 06:05:48" and I want one field for date and one field for time.
Please advise on best practices, thank you.
Solved! Go to Solution.
Labels:
- Labels:
- Date Time
2 REPLIES 2
20 - Arcturus
‎02-06-2020
06:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @tessaenns ,
You'll want to have two formulas (within one tool)
DATE_Component (DATE)
Left([Field],10)
TIME_Component (TIME)
Right([Field],8)
Cheers,
Mark
Alteryx ACE & Top Community Contributor
Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
‎02-06-2020
06:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
That worked, thank you for your quick response! Stay tuned, I have one more question. 🙂
