Forum Discussion
Conditional formatting based on dynamic values
- 9 years ago
Currently it's not supported to dynamically configure condition formatting on the OCR column since we can't add field value in conditional formatting. And it's not supported to set conditional formatting based on another column.
So you may add another column to assign static value and configure conditional formatting on that column.
Tag = IF ( Table1[OCR] < Table1[LowBound], 1, IF ( Table1[OCR] >= Table1[LowBound] && Table1[OCR] <= Table1[HighBound], 0, -1 ) )Regards,
Currently it's not supported to dynamically configure condition formatting on the OCR column since we can't add field value in conditional formatting. And it's not supported to set conditional formatting based on another column.
So you may add another column to assign static value and configure conditional formatting on that column.
Tag =
IF (
Table1[OCR] < Table1[LowBound],
1,
IF (
Table1[OCR] >= Table1[LowBound]
&& Table1[OCR] <= Table1[HighBound],
0,
-1
)
)
Regards,
v-sihou-msft This is great help. At my firm, we have a core report that is directly color coded based on dynamic values. This functionality would be great in a future release & drive Power BI adoption for our firm.