This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I have a matrix like the attached image, it is possible to create a conditional format of icons or a formula with DAX that tells me if the value is greater or less for each of the groups that I have in the matrix. I want the icon to tell me if it is higher or lower according to the group
Solved! Go to Solution.
Hi @mrbajana ,
Try the following formula:
Measure =
var _Max =
MAXX(
ALLSELECTED('Table'[Teatro]),
CALCULATE( SUM('Table'[ADM]) )
)
return
IF(
SUM('Table'[ADM]) = _Max,
"ColoredArrowUp",
"ColoredArrowDown"
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mrbajana ,
Try the following formula:
Measure =
var _Max =
MAXX(
ALLEXCEPT( 'Table', 'Table'[Grupo] ),
CALCULATE( SUM('Table'[ADM]) )
)
return
IF(
SUM('Table'[ADM]) = _Max,
"ColoredArrowUp",
"ColoredArrowDown"
)
Then set icons based on Measure:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for your answer, I apply your formula, I dont find where to send my pbix file so I send you the pictures of my file , sure where I see I only get the red arrows, it must be some little trick that is missing because of the model.
Hi @mrbajana ,
Try the following formula:
Measure =
var _Max =
MAXX(
ALLSELECTED('Table'[Teatro]),
CALCULATE( SUM('Table'[ADM]) )
)
return
IF(
SUM('Table'[ADM]) = _Max,
"ColoredArrowUp",
"ColoredArrowDown"
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you so much It Works.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |