You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
Im using an automation which opens a task every 1st of the month.
I want to set up the Due date field to be a specific date in the month.
For example - I want the task to open each month with a Due date to the 25th of this month.
I tried using - {{now.startOfMonth("+25")}}
But it's not working
Would love to get some help, Thanks
Hey @Dana_Harel
1. Please try {{now.plusDays(25)}}
2. Can you please show printscreen of the whole automation if 1. doesn't help?
Hi @Dana_Harel
There are at least two ways to do this, as described here: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-date-and-time/
{{now.startOfMonth.plus(24)}} add 24 days to the 1st of the month = 25th
{{now.withDayOfMonth(25)}} set the day of month, no matter when the rule runs, to the 25th
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.