SSAS: distribution of measures over percentage
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-03-09T17:05:40Z
Indexed on
2010/03/13
5:45 UTC
Read the original article
Hit count: 702
Hi there,
I am running a SSAS cube that stores facts of HTTP requests. The is a column "Time Taken" that stores the milliseconds a particular HTTP request took.
Like...
RequestID Time Taken
--------------------------
1 0
2 10
3 20
4 20
5 2000
I want to provide a report through Excel that shows the distribution of those timings by percentage of requests. A statement like "90% of all requests took less than 20millisecond".
Analysis:
100% <2000
80% <20
60% <20
40% <10
20% <=0
I am pretty much lost what would be the right approach to design aggregations, calculations etc. to offer this analysis through Excel.
Any ideas?
Thanks, Alex
© Stack Overflow or respective owner