Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Im working with this table that shows a list of workers, the columns are tasks where "1" represents that the worker was able to do it while "0" means they failed. I want to calculate their score in percentage as you can see in the last column. I've seen other related posts but im having a hard time understanding DAX. Any help is appreciated.
Hi @Ivan9485 ,
Is this the original table or a matrix visual?
Do you want a column or a measure?
Best Regards,
Jay
Hi @Ivan9485 ,
Try this:
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Score =
var _task1 = MAX(Table(Task1)
var _task2 = MAX(Table(Task2)
var _task3 = MAX(Table(Task3)
var _task4 = MAX(Table(Task4)
var _task5 = MAX(Table(Task5)
Total = _task1 + _task2 +_task3 +_task4 +_task5
Percentage = Divide(Total,5)
return Percentage
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 47 | |
| 44 |