I want to create a numeric field, which has the age of the idea in days, calculated from the created date to today
Hi @Alfred Tsang , welcome to the Community.
you can create a custom field (number) and use the following to calculate age and update the field.
{{issue.created.diff(now).days}}
The rule would look like this....
An alternative is to simply use a smart value to increment the number in the field. Check the docs for syntax if desired.
It's worth noting that @Jack Brickey's suggestion refers to using Jira Automation to periodically update the field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's done it, thanks!
Support gave me the same resolution with the added detail of using a JQL to filter the ideas first.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That’s such a clever concept — calculating the age of an idea sounds really useful for tracking progress! I’d probably test the logic with Besterekenmachine first to make sure the formula gives accurate results.
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.