Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi @BeginnerBI
You can refer to the following example
The data table
The measure to be put to the value in matrix visual
Total = SUM('Table'[Value])
Then create measure to set the icon rules
Rules = var _previousdate=MAXX(FILTER(ALLSELECTED('Table'),[Date]<MAX([Date])),[Date])
var _previousvalues=CALCULATE([Total],'Table'[Date]=_previousdate)
return SWITCH(TRUE(),OR([Total]=_previousvalues,_previousvalues=0),1,[Total]>_previousvalues&&_previousvalues<>0,2,[Total]<_previousvalues&&_previousvalues<>0,3)
Then put the measure to the conditional formatting
Then choose the measure in the field and set the rules below
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @BeginnerBI
You can refer to the following example
The data table
The measure to be put to the value in matrix visual
Total = SUM('Table'[Value])
Then create measure to set the icon rules
Rules = var _previousdate=MAXX(FILTER(ALLSELECTED('Table'),[Date]<MAX([Date])),[Date])
var _previousvalues=CALCULATE([Total],'Table'[Date]=_previousdate)
return SWITCH(TRUE(),OR([Total]=_previousvalues,_previousvalues=0),1,[Total]>_previousvalues&&_previousvalues<>0,2,[Total]<_previousvalues&&_previousvalues<>0,3)
Then put the measure to the conditional formatting
Then choose the measure in the field and set the rules below
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
136 | |
73 | |
73 | |
58 | |
54 |
User | Count |
---|---|
194 | |
95 | |
63 | |
63 | |
51 |