I'm struggling to write a rule that compares multiple date fields and uses the latest one to update the value of the Due Date field, could you please advise?
i.e.
Custom Field Date 1 (equals 1/1/25)
Custom Field Date 2 (equals 2/2/25)
Custom Field Date 3 (equals 3/3/25)
Custom Field Date 4 (equals 4/4/25)
Due Date = latest date between Custom Field Date 1 - 4 (value should be 4/4/25)
Hi @JD MG -- Welcome to the Atlassian Community!
There are several ways to do what you asked; let's try a simple one using a dynamically created list of dates with a variable and the inline max function:
{{issue.customFieldDate1}},{{issue.customFieldDate2}},{{issue.customFieldDate3}},{{issue.customFieldDate4}}
{{varDateList.split(",").toDate.max}}
Some other ways to do this are:
Kind regards,
Bill
Interesting, i think this could work, will this be OK if any of the customFieldDates is blank?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it will work if one (or more) of the date fields is empty (i.e., null). If all of the date values are null values, the result will be null also.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @JD MG ,
You can also use If and else condition in Automation for Jira, basically 3 if and else condition.
For Consideration: Field IDs for mentioned Custom fields are:
Custom Field Date 1 = 10111
Custom Field Date 2 10112
Custom Field Date 3 10113
Custom Field Date 4 10114
Action: Field value changes for anyone of the mentioned 3 fields.
Condition:
Similarly, you can add other else for remaining 2 date fields
@Bill Sheboy correctly mentioned it to be quite messy, as it will take you to create quite a few if and else blocks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.