Forum Discussion
Anonymous
7 years agoNot applicable
Conditional formatting - copy and paste
Hello Is there a way to copy & paste conditional formatting in the matrix visual? Like do a format painter for conditional formatting from 1 Values field to another? or some other way out? I have li...
Anonymous
6 years agoNot applicable
Any update on this?
This will really save time for reports where we heavily use matrix and tables.
Regards
ROGI
6 years agoRegular Visitor
Now you can set a value field in the conditional formatting options.
Just create a measure with the rules and conditions in DAX and assign it to each field.
Revenue KPI Color = SWITCH(
TRUE()
,SUM('Sales'[Revenue]) < 50000000, "#f44242"
,SUM('Sales'[Revenue]) < 1000000000, "#f4f142"
,SUM('Sales'[Revenue]) > 1000000000, "#5ff442",
"#f44242"
)
Source
https://www.blue-granite.com/blog/controlling-conditional-formatting-using-dax