Date Conversion - Regx
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi All,
Could you please help converting the below Balance Date to the format given in Balance Date(New) in one single formula?
My source date usually has this date format.
Balance Date Balance Date (New)
2024-12-06 2024-06-12
06/13/2024 00:00:00 2024-06-13
Thanks,
Sarath
Solved! Go to Solution.
- Labels:
- Data Investigation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Sarath27
use this formula
IF ISNULL(DateTimeParse([Balance Date],"%Y-%m-%d")) THEN
DateTimeFormat(DateTimeParse([Balance Date],"%m/%d/%Y %H:%M:%S"),"%Y-%m-%d")
ELSE
DateTimeFormat(DateTimeParse([Balance Date],"%Y-%m-%d"),"%Y-%d-%m")
ENDIF
mark done if solved
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Sarath27
you are using "_" here but you asked for "-"
this is the reason of null value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Sarath27
IF ISNULL(DateTimeParse([Balance Date],"%Y_%m_%d")) THEN
DateTimeFormat(DateTimeParse([Balance Date],"%m/%d/%Y %H:%M:%S"),"%Y-%m-%d")
ELSE
DateTimeFormat(DateTimeParse([Balance Date],"%Y_%m_%d"),"%Y-%m-%d")
ENDIF
Hope this helps
mark done if solved.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
As you can see in the attachment, the date format I want is YYYY-MM-DD, but the first row came out as YYYY-DD-MM.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hi @Sarath27
Similar question was raised before. Refer to the below thread and solutions.
https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Convert-Different-Date-Formats...
Basically this is a challenging task, because you cannot distinguish '2024-12-06(=12th of June)' and '2024-12-06(6th of December)'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@Raj Thanks for your solution. I just tweaked this formula, it worked. Thanks much
IF ISNULL(DateTimeParse([Balance date],"%Y-%d-%m")) THEN
DateTimeFormat(DateTimeParse([Balance date],"%m/%d/%Y %H:%M:%S"),"%Y-%m-%d")
ELSE
DateTimeFormat(DateTimeParse([Balance date],"%Y-%m-%d"),"%Y-%d-%m")
ENDIF
