SOLVED
Convert serial date to date in "yyyy-mm-dd" 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
Jsan2758
6 - Meteoroid
‎04-08-2020
04:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi, I need help in converting a serial date into a calendar date in the following format "yyyy-mm-dd". For example, the input date is 43952 and the output should be 2020-05-01.
Solved! Go to Solution.
2 REPLIES 2
15 - Aurora
‎04-08-2020
04:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Jsan2758,
try this formula:
DateTimeAdd("1900-01-01",[Date]-2,"days")
It's off by 2 days, but should be constant, therefore we can subtract it and be correct in the future.
Workflow attached. Let me know if it works.
Best
Alex
‎04-08-2020
05:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Alex,
Thanks so much - your solution works!
