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! Learn more
Hi,
I want to create a DAX query for the below table
| Model | Score |
| A | 4 |
| B | 3 |
| C | 2 |
The query should calculate = Selected Model (Score) / Max(Score) *.4
Hence
For A = 4/4*.4
For B = 3/4*.4
For C = 2/4*.4
IS there a way to calculate the max on a column with specific model scores like above?
Thanks for the help
Solved! Go to Solution.
CalculatedColumn = 'Table'[Score]/MAX('Table'[Score]) * .4
Thanks for the solution.
I have used the above query with a slight change
Calculated Colum = 'Table'[Score]/calculate(MAX('Table'[Score], ALLSELECTED()))*0.4
This helps me with calculating the selected values and work with filters as well.
CalculatedColumn = 'Table'[Score]/MAX('Table'[Score]) * .4
Thanks for the solution.
I have used the above query with a slight change
Calculated Colum = 'Table'[Score]/calculate(MAX('Table'[Score], ALLSELECTED()))*0.4
This helps me with calculating the selected values and work with filters as well.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |