Forum Discussion
aetherial
6 years agoRegular Visitor
Conditional formatting from slicer with multi column
hi, Im new in Power BI and I would like to create conditional formatting for my dashboard with table below. Currently I was able to make slicer from multi columns below ( Category A - D ) so whenev...
- 6 years ago
Hi aetherial ,
You could create a same table in query editor.
Then create a measure to define color in conditional formatting.
Measure = IF(SELECTEDVALUE(Query1[Value])=SELECTEDVALUE('Table'[Category A]),"red")Here is the result.
Here is my test file for your reference.
v-eachen-msft
6 years agoCommunity Support
Hi aetherial ,
You could create a same table in query editor.
Then create a measure to define color in conditional formatting.
Measure =
IF(SELECTEDVALUE(Query1[Value])=SELECTEDVALUE('Table'[Category A]),"red")
Here is the result.
Here is my test file for your reference.