Forum Discussion
EstherBR
Helper III
10 months agoFormat only the row subtotals
Hi, I have the following matrix: Is there any way to apply conditional formatting to only the row subtotals? If this is not possible, it is possible to apply conditional formating to the n...
- 10 months ago
Hi EstherBR,
It may not be exactly what you're after, but this may work.
- Create a new measure (change to suit).
_colour = IF( NOT ISINSCOPE(FactInternetSales[ProductKey]) , "light blue" )- Select your visual.
- In the formatting options, choose cell elements > Series > Background color
- Select Field value > Values and Totals > your measure
- Click OK.
- Repeat for other columns.
KNP
Super User
10 months agoHi EstherBR,
It may not be exactly what you're after, but this may work.
- Create a new measure (change to suit).
_colour =
IF(
NOT ISINSCOPE(FactInternetSales[ProductKey])
, "light blue"
)
- Select your visual.
- In the formatting options, choose cell elements > Series > Background color
- Select Field value > Values and Totals > your measure
- Click OK.
- Repeat for other columns.