I have automation for a BAU in my company
Weekly BAU-Monthly BAU-Quarterly BAU and also the Annually BAU.
I use {{july.OfTheMonth(2, 5)}} and didn't work also I pick a date, but I assumed that date I should change every year manually.
Is there any JQL for this?
Hi Daniela,
The only way I can think of (without third-party apps) is using startOfYear(INC) function.
The issue with INC is that it only accepts a single parameter type Year/Month/Week .. (+/-)nn(y|M|w|d|h|m)
So the best way to do this is using days and 15th of July is exactly 195 days more than 1st of January. Thus, the following query should do the trick:
created >= startOfYear("195d") and created <= startOfYear("196d")
Best,
Sayed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.