in standard process, Current date -1
Do you mean subtracting 1 from a date object?
You can use this expression for example to subtract 1 minute from a date object:
Date.now().minusMinutes(1)
Here is the documentation on all the ‘minus’ functions supported for any granularity of time (hours, days, months, etc)
1 Like