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.
Hi,
Let me share my problem with eazyBI. I need to calculate the following percentage:
Hours from issues with Label=FWK / Total number of hour of all issues.
It seem easy but it is not, although the number of label = FWK it is correctly shown in Rows but when trying to complete the formula in Measures, the value it is never coming.
I attach a document for more clarification.
Thank you.
Ignacio.
The correct second screenshot is:
[Measures].[Horas Framework vs Total %] =
[Measures].[Horas Framework]/[Measures].[Hours spent]
Hi,
The recommended solution is to use the standard calculation for the percentage of total:
In this case, note that Label is a multi-value field, and hours are counted for all labels the issue has.
The formula of a custom measure if you wish to avoid the use of the Label dimension in the report:
([Measures].[Hours spent],
[Label].[FWK])
/
([Measures].[Hours spent],
[Label].DefaultMember)
Kindly,
Janis, eazyBI support
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.
Hi Janis,
That formula is what I definitely needed. Thank you so much.
Best regards.
Ignacio.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, there was a mistake in my screenshot. This is the correct one.
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.