Hi,
I am doing a automation which says as below:
If a target end date is greater than due date at the epic+ level, report slippage (adding label)
Tried all below values:
""{{now.plusDays(issue.duedate.diff(issue.customfield_11629).businessDays)}}""
""""
{{issue.”"Due Date".diff(issue.customField_11629).days.abs}} >= 30
but it says error if condition not matching. please see the snips added.
Regards,
Anu
Hello @Anuradha Yadav
this function {{now.plusDays(issue.duedate.diff(issue.customfield_11629).businessDays)}}
will return a number field, not a true/false value.
If you want using condition true / false , you can use isAfter or is Before for ex: {{now.isAfter(issue.created)}}
I suggest that you can compare one smart value to another smart value date, or compare one smart value to a field value, ex:
{{issue.Due Date.diff(issue.customField_11629).days.abs}}
greater than 29
Hi @Duc Thang TRAN ,
as said I just want to -
If a target end date is greater than due date i want to report slippage (adding label)
So If diff between 2 given dates is more then or equal to 30days I want to add label. Could you please help how to do it?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.