Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
I have a small data set, with a few values. I've simplified this as shown below:
|
My dataset as calulated averages already. For player 5, we can see the first date (1/9/2022), we have 80% and 100%. If I put these in a visual and get the average, I get 90%. However, the calculation is (attempts-errors)/attempts. If I calculate this from the raw columns, I'd get 92% because the 100% value is weighted with 8 attempts to the 5 for the single error.
I have been trying various SUMX () and AverageX() combinations, but I don't quite understand how I can get a measure or column that would give me
Solved! Go to Solution.
Hi, @ssc
You can try the following methods.
Measure =
VAR _table =
SUMMARIZE ('Table','Table'[Date],'Table'[Player],
"DIVIDE",
DIVIDE ( SUM ( 'Table'[Attempts] ) - SUM ( 'Table'[Errors] ), SUM ( 'Table'[Attempts] ) ) )
RETURN
SUMX ( _table, [DIVIDE] )
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @ssc
You can try the following methods.
Measure =
VAR _table =
SUMMARIZE ('Table','Table'[Date],'Table'[Player],
"DIVIDE",
DIVIDE ( SUM ( 'Table'[Attempts] ) - SUM ( 'Table'[Errors] ), SUM ( 'Table'[Attempts] ) ) )
RETURN
SUMX ( _table, [DIVIDE] )
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
That does appear to work. I'll test on a larger data set and repost, but can you explain how this works? I'm a little unsure of what is happening.
Lost part of my post. I am looking to understand how I can get a weighted average by date of 92% instead of 90% for a player.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 64 | |
| 49 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 117 | |
| 38 | |
| 36 | |
| 29 |