Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
im trying to convert a set of values derrived from ranking to there equivilant percentage.
the schema is as follows
| Social Network CM Red Social | Users CM Red Social |
| (not set) | 100 |
| Academia | 454 |
| Buzzfeed | 235 |
| 676 | |
| Youtube | 33 |
| 67 | |
| Meetup | 56 |
| 345 | |
| (not set) | 234 |
| Academia | 546 |
| Buzzfeed | 676 |
| 87 | |
| Youtube | 89 |
| 76 | |
| Meetup | 45 |
| 78 |
i have one mesure that filters out a social network not needed and aggregates a total
with this measure in hand i have another measure that ranks and gets the top 5 social media users
how can i convert this to percentage knowing that the order and names can change dfrom day to day
im thinking i can use the divide feature with a ranking to 5 and filter out the unwanted social media
below is my current result i need that in percentage
thanks
Solved! Go to Solution.
fixed with the below
@Anonymous ,
You may modify the measaure as below:
TopNRedSocial =
IF (
RANKX (
ALL ( 'Grupo LD CM Red Social'[Social Network CM Red Social ] ),
CALCULATE ( [Users CM Red Social Total] )
) < 6,
SUM ( 'Grupo LD CM Red Social'[Users CM Red Social] )
/ CALCULATE (
SUM ( 'Grupo LD CM Red Social'[Users CM Red Social] ),
ALL ( 'Grupo LD CM Red Social' )
),
BLANK ()
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
that gives me a percentage based on all the catagories including the ones not shown.
i changed the mesure to below
fixed with the below
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 54 | |
| 47 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 82 | |
| 71 | |
| 38 | |
| 28 | |
| 25 |