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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 35 | |
| 23 | |
| 22 |
| User | Count |
|---|---|
| 134 | |
| 103 | |
| 57 | |
| 43 | |
| 38 |