Skip to main content
Nintex Community Menu Bar

When I add a calculated value to show the current date and time I use this formula:

current date + “ “ + current time, but this shows as:
Mon Sep 29 2025 00:00:00 GMT+0100 (British Summer Time) 09:59

I would like it to show as 
29/09/2025 09:59

 

When putting in just the Current Date it adds the time format, but shows as 00:00:00, is there anyway of getting it to show like above?

Hi ​@DonnaA 

You can use the formatDate runtime function to get the date into the correct format.  Something like the following should work for you:

formatDate(Current Date, "dd/MM/yyyy") + " " + Current Time


Thanks, brain wasn’t working this morning, not sure why I didn’t think of that in the first place, lol