Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
This is trivial by just turning off the interactions. However, now I need to write a measure that returns the selected value for each Slicer. Is there a way to do this?
Something tells me this is not possible, but I am hoping I am wrong.
TIA
Solved! Go to Solution.
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])
Indeed, as you are using the same column, you cannot use the SelectedValue formula, which returns the selected value in the column.
One workaround would be to create a calculated column for your value (it's just a duplicate of your date column), which would allow you to use one column for each slicer. In this case, the SelectedValue would return the correct value for each.
After that, you can create a measure like this one:
Slicers Selection = SELECTEDVALUE('Table'[Date]) & " - "&SELECTEDVALUE('Table'[DupplicateDate]) ...
Thank you for your suggested workaround. A calculated column is definitely an easier workaround for me than a whole new table. Gonna try it now!
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])
Thank you so much for your quick reply. I had a feeling that I would have to expand my Data Model which I was hoping to avoid. Ah well.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 40 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 98 | |
| 84 | |
| 35 | |
| 30 | |
| 25 |