Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I am building a "report card" for employees taking courses. The data consists of "course name, launch number(attempts to pass course), score(earned by employee), points(total points per course), and employee name. I am having trouble with getting the correct total of the measure created for score. The table below shows the course, total score, # of attempts. For mulitple attempts the total score is adding up the scores of all the attempts and not just the highest score taken.
Sum of Score is self explanatory and FORMAT is whole number and summarization is SUM.
(You can see that "EmployeeeHighScore" takes the highest but does not add them up for a total which I need for the report card.)
How can I get the measure EmployeeHighScore to total the correct way.
DAX for Employee High Score is :
MaxScoreperLearner = CALCULATE(MAX('ICT Report Data'[Score]), FILTER('ICT Report Data', 'ICT Report Data'[Score] = MAXX(FILTER('ICT Report Data', 'ICT Report Data'[Learner Id] = EARLIER('ICT Report Data'[Learner Id])), 'ICT Report Data'[Score])))
Solved! Go to Solution.
Hi @CARTERDX - you can create one more measure to sum these highest scores for the total score.
Measure:
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @CARTERDX - you can create one more measure to sum these highest scores for the total score.
Measure:
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
9 |