Skip to main content
Nintex Community Menu Bar
Solved

Display Date/Time using the Current Date and Current Time in formula builder

  • September 29, 2025
  • 2 replies
  • 22 views

Forum|alt.badge.img+4

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?

Best answer by brent_read

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

2 replies

Forum|alt.badge.img+10
  • Nintex Employee
  • 94 replies
  • Answer
  • September 29, 2025

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


Forum|alt.badge.img+4
  • Author
  • Scholar
  • 19 replies
  • September 29, 2025

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