How can I go back in time?

Hi!

This expression will give you the date in that format:

[[Now.addDays(-LVAR1).getDate()]]/[[Now.addDays(-LVAR1).getMonth()]]/[[Now.addDays(-LVAR1).getFullYear()]]

This version has leading zeros on the month and day portions, when needed:

[[“0”.concat(Now.addDays(-LVAR1).getDate()).slice(-2)]]/[[“0”.concat(Now.addDays(-LVAR1).getMonth()).slice(-2)]]/[[Now.addDays(-LVAR1).getFullYear()]]