Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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' )
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 10 | |
| 10 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 24 | |
| 19 | |
| 19 | |
| 15 | |
| 9 |