Hi @Chriswharton22,
Try below expression instead and see if it works:
LAST_DAY(sysdate+1)
Assuming you need to get the last day of each month. Next execution date is set after each execution, so adding 1 to the current date would make sure the next execution date is set to next month.
Any expression that returns a valid date is supposed to work, but some expressions may not work in older versions of the app due to limitations.
Hope this helps!
Hi @Chriswharton22,
Try below expression instead and see if it works:
LAST_DAY(sysdate+1)
Assuming you need to get the last day of each month. Next execution date is set after each execution, so adding 1 to the current date would make sure the next execution date is set to next month.
Any expression that returns a valid date is supposed to work, but some expressions may not work in older versions of the app due to limitations.
Hope this helps!
Thanks Charith, that worked as expected! Many thanks for your quick response