Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I currently have a measure for a pareto chart:
however I was hoping to get this in % form i.e. rather than a range of 1-1200 for example is it possible to get this as a 0-100% range?
Solved! Go to Solution.
@Anonymous , Try like
Cumul Events =
VAR thisdate =
MAX ( 'Enhanced line list'[Event Date] )
RETURN
divide(
CALCULATE (
[Count],
ALL ( 'Enhanced line list'[Event Date] ),
'Enhanced line list'[Event Date] <= thisdate
) ,
CALCULATE (
[Count],
ALL ( 'Enhanced line list'[Event Date] )
)
)
or
Cumul Events =
VAR thisdate =
MAX ( 'Enhanced line list'[Event Date] )
RETURN
divide(
CALCULATE (
[Count],
ALL ( 'Enhanced line list'),
'Enhanced line list'[Event Date] <= thisdate
) ,
CALCULATE (
[Count],
ALL ( 'Enhanced line list' )
)
)
@Anonymous , Try like
Cumul Events =
VAR thisdate =
MAX ( 'Enhanced line list'[Event Date] )
RETURN
divide(
CALCULATE (
[Count],
ALL ( 'Enhanced line list'[Event Date] ),
'Enhanced line list'[Event Date] <= thisdate
) ,
CALCULATE (
[Count],
ALL ( 'Enhanced line list'[Event Date] )
)
)
or
Cumul Events =
VAR thisdate =
MAX ( 'Enhanced line list'[Event Date] )
RETURN
divide(
CALCULATE (
[Count],
ALL ( 'Enhanced line list'),
'Enhanced line list'[Event Date] <= thisdate
) ,
CALCULATE (
[Count],
ALL ( 'Enhanced line list' )
)
)
User | Count |
---|---|
21 | |
20 | |
12 | |
10 | |
8 |
User | Count |
---|---|
30 | |
28 | |
14 | |
13 | |
11 |