I’m trying to transform a date in the format of 14-08-2024 to something like Wed 08 Aug 2024
If I’m understanding your situation, you can use the slice()
and toUTCString()
functions to get what you’re looking for. You can slice up your input date, rearrange it into a string that matches a recognizable format, and then convert it into a real date.
Convert_Date.rp (65.4 KB)