Now()

Returns the system date and time as a type Date.

IDEAScript Language:

Comments

Hi Brian! Is it posible to sum dates to this function? Something like this: now() - 5 Should be 26/08/2022

Brian Element's picture

You would have to do something like this for that to work:

DateSerial(Year(Now()), Month(Now()), Day(Now()) - 5)

It works perfectly that way