How can I remove Seconds?

How can I remove Seconds? I want to format it like 14:05:00

Hi @Sam_Krausz ,

To format your datetime and remove seconds, you can use the formatDate() function provided out of the box.
Here’s an example of how to format your date to appear as 14:05:00 (What you gave as example): {{formatDate(now; "HH:mm:ss")}}
Another example on how to format your date to 2023-05-04T14:05 you should use {{formatDate(now; "YYYY-MM-DDTHH:mm")}}
Where you replace the now keyword with your variable.

Glenn - Callinetic