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! Get ahead of the game and start preparing now! Learn more
Hi,
Could you please help me with this challenge? I am trying to make a measure, which takes "less than or equal to" value, in this example: 36.82. I tried to use selected value with max function, but it always show max value from column, not the choosen one.
Thanks in advanced,
Rafal
Solved! Go to Solution.
Hi @RM_1 ,
In your scenario, we can use the following DAX query:
Measure = CALCULATE ( MAX ( 'Table'[Column1] ), ALLSELECTED ( 'Table'[Column1] ) )
The result will like below:
Best Regards,
Teige
Hi @RM_1 ,
In your scenario, we can use the following DAX query:
Measure = CALCULATE ( MAX ( 'Table'[Column1] ), ALLSELECTED ( 'Table'[Column1] ) )
The result will like below:
Best Regards,
Teige
Hi,
I've got one another question regarding this case. I've got one table with 20 columns. Each column refers to one slicer. Is it possible to take different values from different columns by every slicer but from the same table? Right now, using formula:
Measure = CALCULATE ( MAX ( 'Table'[Column1] ), ALLSELECTED ( 'Table'[Column1] ) )
I only can see the smallest one value, like this:
Thank you,
Rafal
Thanks, it works properly! 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 124 | |
| 101 | |
| 67 | |
| 49 |