Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
The columns that I have as raw data are (a) KPIs, (b) Indicator, (c) Weightage, (d) Past Performance, (e) Target, (f) Actual Result, (g) Assessee, and (h) Assessor. The different tables are later clubbed in “Table All” within Power BI with additional columns like (i) Age Bracket, (ii) Designation, (iii) Department, (iv) Gender, (v) Job Cadre, and (vi) Region.
A new column is used to calculate “Score”.
Score = IF('All'[Indicator]="Positive",'All'[Actual]/'All'[Target]*'All'[Weightage]*100, 'All'[Past Performance]/'All'[Target]*'All'[Weightage]*100)
I have used a separate table for my measures.
I need average score of each KPI for which i
Average Score = AVERAGE('All'[Score])
In order to get the average of all employees as a sum I have tried a couple of measures, but both aren’t working.
Sum of Average = AVERAGEX(VALUES('All'[Assessee]), [Average Score])
Weighted Score = AVERAGEX(DISTINCT(SELECTCOLUMNS('All', "Status", 'All'[Status], "Average Score", [Average Score])), [Average Score])
Most importantly, KPIs are appearing with exact average score irrespective of the slicers being used.
Below is the snapshot of the report.
Solved! Go to Solution.
oh, sorry, I forgot something.
how about this:
Sum of Average = AVERAGEX(VALUES('All'[Assessee]), CALCULATE(SUM('All'[Score])))
Really appreciated @lamnvt.
Your measure is much simpler and most importantly is giving the desired result.
Just minutes ago I got the solution by using the following measure.
hi,
you can try the following:
Sum of Average = AVERAGEX(VALUES('All'[Assessee]), 'All'[Score])
Hi there @Iamnvt ,
Sum of Average = AVERAGEX(VALUES('All'[Assessee]), 'All'[Score]) can't be done.
The syntax is "table" and then "expression".
oh, sorry, I forgot something.
how about this:
Sum of Average = AVERAGEX(VALUES('All'[Assessee]), CALCULATE(SUM('All'[Score])))
Really appreciated @lamnvt.
Your measure is much simpler and most importantly is giving the desired result.
Just minutes ago I got the solution by using the following measure.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 59 | |
| 31 | |
| 25 | |
| 25 |