Forum Discussion
Anonymous
2 years agoNot applicable
Conditional formatting
Hi, I have a measure Delta as follow: Delta = SWITCH( TRUE(), [Hours_Submitted_TS] - [Hours_Forecast] > 0, "Charged more than expected", [Hours_Submitted_TS] - [Hours_Forecast] < 0,...
- 2 years ago
Hi Anonymous,
You can use a measure to define the color like this:
Delta Color= SWITCH(TRUE(),[Delta ] = "Charged more than expected", "RED",[Delta ] = "Charged less than expected", "YELLOW",[Delta ] = "Charged as forecasted", "GREEN")
Then go to Format Ribon and follow the path indicated by ChiragGarg2512., like this:
_AAndrade
Resident Rockstar
2 years agoHi Anonymous,
You can use a measure to define the color like this:
Delta Color= SWITCH(
TRUE(),
[Delta ] = "Charged more than expected", "RED",
[Delta ] = "Charged less than expected", "YELLOW",
[Delta ] = "Charged as forecasted", "GREEN"
)
Then go to Format Ribon and follow the path indicated by ChiragGarg2512., like this:
Then go to Format Ribon and follow the path indicated by ChiragGarg2512., like this:
- ChiragGarg25122 years ago
Solution Sage
_AAndrade Thanks for the correction.