This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello there, I need some help. I am trying to create a matrix (multi-level visual) that has icons (R/A/G) to indicate whether the number went up or down from previous day.
My data table looks like this;
The result needed;
Been looking around for answers but have not found anything that helps my case.
Appreciate your help!
Solved! Go to Solution.
Hi,
Here is how to do this:
Data:
Dax:
End result:
If you don't want arrows on the first row change the dax:
Proud to be a Super User!
Hi @LouiseR ,
I have created a simple sample, please refer to it to see if it helps you.
Create 2 measures. To get the count value before today.
Measure =
CALCULATE (
MAX ( 'Table'[COUNT] ),
FILTER (
ALL ( 'Table' ),
'Table'[Region] = SELECTEDVALUE ( 'Table'[Region] )
&& 'Table'[AGEING] = SELECTEDVALUE ( 'Table'[AGEING] )
&& 'Table'[Date] < SELECTEDVALUE ( 'Table'[Date] )
)
)
Then compare the 2 results.
result =
IF (
MAX ( 'Table'[COUNT] ) = [Measure],
0,
IF (
MAX ( 'Table'[COUNT] ) < [Measure],
1,
IF ( MAX ( 'Table'[COUNT] ) > [Measure], 2 )
)
)
Then create the conditional formatting.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Here is how to do this:
Data:
Dax:
End result:
If you don't want arrows on the first row change the dax:
Proud to be a Super User!
Your solution is great, however in my Matrix visual - it is the sum of the count.
The results look weird and even if the numbers go up or down it doesn't change the icons/results.
Below is the image of the Data table as well.
Appreciate your help on this.
Check out the May 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.