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!
Can I configure conditional formatting so that the criterion is the previous value of the parameter? For example, in the report on positions in the search engine, I need to show whether the position has improved, deteriorated or remained unchanged.
On the screen I showed how it should look about.
Thanks!
Solved! Go to Solution.
Hi @ermak
You can create a measure like below and use it for conditional formating in your matrix
_arrows =
VAR _previous = CALCULATE( SUM( 'Table'[Value] ), PREVIOUSDAY( 'Table'[Date] ) )
VAR _current = SUM( 'Table'[Value] )
RETURN SWITCH(
TRUE(),
_previous = BLANK(), BLANK(),
_previous < _current, 1,
_previous = _current, 2,
_previous > _current, 3
)
I've attached a file with the solution as well.
The first thing that comes to my mind is to write a calculated column to indicate the previous status and then use that column to drive the conditional formatting using a logical less-than, greater-than, or equal-to.
Hi @ermak
You can create a measure like below and use it for conditional formating in your matrix
_arrows =
VAR _previous = CALCULATE( SUM( 'Table'[Value] ), PREVIOUSDAY( 'Table'[Date] ) )
VAR _current = SUM( 'Table'[Value] )
RETURN SWITCH(
TRUE(),
_previous = BLANK(), BLANK(),
_previous < _current, 1,
_previous = _current, 2,
_previous > _current, 3
)
I've attached a file with the solution as well.
Hello, @Mariusz !
Thank you very much, but it only works if the dates are in order, for example 01.02.2020, 02.02.2020, 03.02.2020, etc. But it doesn't work if the dates are spaced, for example, 01.02.2020, 13.02.2020, 28.02.2020.
Is there any way to fix 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.
| User | Count |
|---|---|
| 29 | |
| 25 | |
| 25 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 59 | |
| 50 | |
| 25 | |
| 20 | |
| 20 |