You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I would like to calculate the average age of issues I have loaded into a structure per formula column.
Currently I am calculating the number of unresolved issues via following formula:
SUM{If(resolution = undefined;1)}-1
Hello Rupert,
Please try this formula:
if level-1: AVG{days_between(created,today())}
Please feel free to change the level value - level may vary depending on multiple factors (how your structure is built, are there any folders, where do you need to show the average value etc.).
For instance, in my structure the formula shows the average value next to the structure's name on the top.
In order not to share any sensitive info here (and in any other case) you're always welcome to reach out to our support team directly at support@almworks.com. If you wish, you can share screenshots of your hierarchy and other details/questions there.
Kind regards,
Dmitrii Kuzmin
Hello Dmitri,
thanks for information. Average age should be shown on project level... and I have a structure showing several projects.
But I think your formula needs to be extended to show only the average age of the still "unresolved" issues... I mean the already resolved ones should not be taken into consideration... any ideas?
Thx
Rupert
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right you are, @rupert_schreder
There you go:
if level=1:
AVG
{
if resolution=undefined:
days_between(created,today())
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is that possible to show avg days like " Open since xx Days" through formula ?am trying use concate function but nothing is helping me to show "open since xx days".
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.