Hi,
want to convert this date: 2024-09-30
to: 09-30-2024
How can I dot this?
Thanks in advance.
Greetings,
Robin
Hi,
want to convert this date: 2024-09-30
to: 09-30-2024
How can I dot this?
Thanks in advance.
Greetings,
Robin
I made a workaround, but I think there must be an easier way?
{{split(2024-09-3; "-")}}
{{get(44.grippDate; 3)}}-{{get(44.grippDate; 2)}}-{{get(44.grippDate; 1)}}
Hello @uitholland,
You should be able to use parseDate() then formatDate() for this.
{{formatDate(parseDate("2024-09-30"; "YYYY-MM-DD"); "MM-DD-YYYY")}}