This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I've two similar questions.
1) If using a slicer panel that is hidden/unhidden via a bookmark, is it possible to have a eg coloured square to denote when users have selected an item(s) from the slicer, when the slicer panel is hidden ?
2) I may use a bookmark to enable users to switch between seeing either table 1 or table 2. If users click on a region in column A in table 1 and that filters table 2 and they then switch to seeing table 2, is it possible to have a eg coloured square to denote that table 1 /2 is being filtered ?
Solved! Go to Solution.
@AndyDD_UK So you should be able to handle both cases by using a shape visual with conditional formatting using a measure like:
Flag Measure =
VAR __CountAll = COUNTROWS(DISTINCT(ALL('Table'[Region])))
VAR __Count = COUNTROWS(DISTINCT('Table'[Region]))
RETURN
IF(__Count = __CountAll,1,0)
There are also the ISFILTERED, ISCROSSFILTERED and similar DAX functions.
@AndyDD_UK So you should be able to handle both cases by using a shape visual with conditional formatting using a measure like:
Flag Measure =
VAR __CountAll = COUNTROWS(DISTINCT(ALL('Table'[Region])))
VAR __Count = COUNTROWS(DISTINCT('Table'[Region]))
RETURN
IF(__Count = __CountAll,1,0)
There are also the ISFILTERED, ISCROSSFILTERED and similar DAX functions.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 39 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 37 | |
| 32 | |
| 26 | |
| 25 |