Forum Discussion

WishAskedSooner's avatar
WishAskedSooner
Continued Contributor
9 months ago
Solved

Duplicate Slicer Question

HI Experts!   I have a slicer for Annual, Quarterly, and Monthly, and I want to re-use the slicer on the same page but make the slicers independent e.g. Slicer A: Annual and Slicer B: Monthly.   ...
  • Kedar_Pande's avatar
    9 months ago

    Slicers filter the entire data model, so you can't get independent selections from two slicers on the same column.

     

    The workaround: Create a separate disconnected table for your second frequency (Annual/Quarterly/Monthly). Use that table for your second slicer, then use SELECTEDVALUE on that disconnected table in your measure.

     

    SlicerA_Selection = SELECTEDVALUE('FrequencyTable'[Frequency])
    SlicerB_Selection = SELECTEDVALUE('DisconnectedFrequencyTable'[Frequency])