Hi all,
I have the following situation:
I want to calculate a simple ratio of time spent fixing bugs vs time spent developing new features for projects. Of course I've tried with a very naive approach to define a new calculated member (in my "issue type" dimension) as Bugs/Projects*100 but it's not giving me the expected figure.
How can I solve it out?
Thank you for your help.
Hi Jerome!
You are correct to use the tuples for the ratio formula.
If you also wanted to see Measure columns for Days Spent for Bugs and Days Spent for Project issue type, you can add following Measures (also tuples)
([Measures].[Days spent], [Issue Type].[Bugs])
([Measures].[Days spent], [Issue Type].[Project])
And then use these for division in ratio measure
[Measures].[Days spent for bugs] / [Measures].[Days spent for Projects]
Kind regards,
Lauma
Hi Lauma, works fine! Thanks again for your quick help. Jerome
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi All,
Found something using tuples, not sure that's the right way to it though. I've created a new calculated measure like this:
([Measures].[Days spent],[Issue Type].[Bugs])/([Measures].[Days spent],[Issue Type].[Project])
Results are OK but I'cant have both ratios and time spent because it's actually adding new columns. Any other idea would be appreciated.
Jerome
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.