Forum Discussion

bobbob123's avatar
bobbob123
Helper III
1 year ago
Solved

Trigger Bookmarks using Slicer

Hi   I have 1 slicer (year value), 1 visual (any visual) and 1 shape that cover my entire visual.   I want to cover my visual with the 1 shape (set of 50% transparence) unless a user selects a va...
  • techies's avatar
    1 year ago

    Hi bobbob123 as i understand , you can use the following ShapeFillColor measure and apply it to the shape’s fill color using conditional formatting (fx in the Fill setting)

     

    ShapeFillColor =
    IF(
    ISFILTERED('YourTable'[Year]),
    "#FFFFFF00", 
    "#80808080" 
    )