Could someone please help me with a Groovy script to calculate the age of an issue for a custom field using the JMCF functionality? This is on Jira Server if that's important.
"today's date" - "(Jira Field) created" = number of days
Thanks!
Hi @Sandy Greenberg,
You can use the below Groovy script to get the number of days between issue created date and the current date:
new Date() - issue.get("created")
Regards,
Suprija
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.