Automation for Jira - Comparing two date fields

Jamie Spatz May 7, 2019

I'm trying to get the number of days between the issue created date and a custom date field called closed date (also tried the system issue.resolutiondate but that didn't work either). No matter what the dates are set to in the issue, the automation rule will only return 1 in the target field. All of the examples in the documentation for date functions list comparing to  (now), but I want to compare it to another date field. How do? 

1 answer

1 accepted

5 votes
Answer accepted
Sebastian Krzewiński
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 7, 2019

Hi Jamie

To get diff between two dates fields I used something like this:

{{issue.customfield_10015.diff(issue.customfield_10016).minutes}}

In my case I want to had diff in minutes but you can easily switch this to days.

Helpful docs:

- date attributes - https://docs.automationforjira.com/working-with-issue-data/date-functions.html#attributes-of-a-date

- calculate the difference between two dates -  https://docs.automationforjira.com/working-with-issue-data/date-functions.html#calculating-the-difference-between-two-dates

Let me know if this help you :)

 

Regards,

Sebastian

Jamie Spatz May 7, 2019

Thank you Sebastian! My syntax was off, that was the problem (as usual). 

Assia Touati March 23, 2020

@Sebastian Krzewiński Where do you add this script please ? 

Sebastian Krzewiński
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 23, 2020

Hi @Assia Touati You can add it wherever you want (comment body, field value). In my case I added it as a value of text field.

You must remember that field type must me correct with result type (e.g. if you want put something in number field diff result should be a number).

Like Assia Touati likes this
Assia Touati March 23, 2020

so the difference between two timedate in hours should be put in a number field ? am i right ? @Sebastian Krzewiński 

Sebastian Krzewiński
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 25, 2020

It can be put in text field. It depends what you need do next with it.

abhishek.singh February 24, 2021

Hello @Sebastian Krzewiński ,

 

Thanks in advance. 

I have one scenario where I have start date and end date and want to populate the difference in field duration which is number field. 

Can you please help me in configuring this.
I tried populating result in description field but not getting anything there. 

 

Regards,

Abhi

Sebastian Krzewiński
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 24, 2021

Hi @abhishek.singh 

Please check - https://support.atlassian.com/jira-software-cloud/docs/smart-values-date-and-time-functions/

 

In your case I will probably use {{[date1].diff([date2]).[unit]}} smart value.

You should use this value in proper field in action edit issue.

 

Regards,

Sebastian

abhishek.singh February 24, 2021

Hello @Sebastian Krzewiński ,

 

Thanks for your reply.

I got the solution.

 

Regards,

Abhi

Like Sebastian Krzewiński likes this
Carlos April 22, 2021

@Sebastian Krzewiński 

 

Hello!

i want something like this

{{#issue.comments}}
Comment by: {{author.displayName}} at: {{created}}
{{body}}
{{/}}

but getting a email every 24 hours, with the NEW comments of the day (24hours)

get only new comments, with the code i sent to you, i receive all comments

 

something like {{#issue.comments}}
IF {{created}} = 21/04/2021 14:00
Comment by: {{author.displayName}} at: {{created}}
{{body}}
{{/}}

basically if created in last 24 hours, appear on my mail

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events