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
I have data in a matrix and I want to add an icon that shows if it is higher or lower than the previous row. It looks like the only option is to compare the individual row to the highest and lowest values over all.
Solved! Go to Solution.
I am assuming you have a measure that adds up the amounts in your table like.
SUM = SUM ( YourTable[Amount] )
And also that you have a dates table in your model. If so you can write a measure like this.
Change from Prior Day =
[SUM] -
CALCULATE([SUM],DATEADD(Dates[Date],-1,DAY))
Then use that in a conditional formatting rule on the [Sum] value in your visual.
Here is the result.
I am assuming you have a measure that adds up the amounts in your table like.
SUM = SUM ( YourTable[Amount] )
And also that you have a dates table in your model. If so you can write a measure like this.
Change from Prior Day =
[SUM] -
CALCULATE([SUM],DATEADD(Dates[Date],-1,DAY))
Then use that in a conditional formatting rule on the [Sum] value in your visual.
Here is the result.
This works! Thanks!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |