hello,
I am doing an automation for a project in our Finance department.
I need every 28th of the month, it creates a ticket, setting as "Due date" the 3rd of the following month.
As a smart value I can only do for example: {{now.plusDays(5)}} however if the month in question has 28 or 31 days how can I do it?
Thanks
Hi @Mattia Battan,
The following smart value should fix your problem, since it adds 3 days to the last day of the current month, regardless of the number of days in a month:
{{now.endOfMonth.plusDays(3)}}
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.