SOLVED
convert string to date format
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
bh1789
8 - Asteroid
‎11-06-2023
11:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
can someone assist, I need to convert string "Jul'23" to "2023/07/01"
I am using DateTime Parse tool but my output is [null]
Solved! Go to Solution.
Labels:
- Labels:
- Date Time
2 REPLIES 2
cjaneczko
13 - Pulsar
‎11-06-2023
11:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can use the following formula where [Field1] is the field that contains "Jul'23".
datetimeformat(DateTimeParse([Field1],"%h'%Y"),'%Y/%d/%m')
17 - Castor
‎11-06-2023
12:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
