Hey there,
i need help with converting a date & time from this:
- August 2024 06:44
to this:
2024-08-22T06%3A44%3A00%2B01%3A
Can anyone help?
Best regards, Jane
Hey there,
i need help with converting a date & time from this:
to this:
2024-08-22T06%3A44%3A00%2B01%3A
Can anyone help?
Best regards, Jane
Give this a try:
{{parseDate(<field>; "DD. MMMM YYYY HH:mm")}}
Some info on parseDate
syntax is at:
https://www.make.com/en/help/functions/tokens-for-date-time-parsing
Hi @Jane_Slaar
Try the below method to achieve this.
{{replace(replace(formatDate(now; “YYYY-MM-DDTHH:mm:ssZ”); “:”; “%3A”); “+”; “%2B”)}}
Output:
Best regards,
Msquare Automation
Gold Partner of Make
@Msquare_Automation
Thanks @Msquare_Automation
I tried a similar rule, but for some reasons, that didn’t work.
Your solution is working
Glad to know your problem is resolved and appreciate your feedback.
Best regards,
Msquare Automation
Gold Partner of Make
@Msquare_Automation