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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
If you have Jira Align Enterprise Insights and want to create a report that with the Value Score that is displayed on the Value tab of Epics, you may have been left scratching your head on how to do that.
The current_dw.Epic Value table within Enterprise Insights contains score value for each question answered on the Value tab for an Epic. The formula for the Value Score is relatively simple, but there is a slight catch which I will get to in a moment.
Here is the formula for Value Score:
Value Score = Average of Answer Score of all scorecard questions for an Epic
Now to the slight catch...In Jira Align, Value Score is a decimal value with one place (tenths). Here is an example of a decimal Value Score of an Epic in the UI.
The values in the Answer Score column are integer values (whole numbers).
If you calculate the average of an integer value, you will get an integer value in SQL and other data visualization tools. So you may need to convert the Answer Score to a decimal value first before calculating the average of the Answer Score values. Below is an example of this conversion in SQL using the CAST function. In SQL the CAST function is used twice because when the decimal Answer Score value is averaged, the resulting value is a decimal value with multiple places so it need to be converted again to a decimal value with a single place (tenths).
CAST(AVG(CAST(EV.[Answer Score] AS DECIMAL(5,1))) AS DECIMAL(5,1))
Sam Tsubota
Senior Product Manager, Enterprise Agility
Atlassian
Los Angeles, CA
27 accepted answers
0 comments