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 have a slicer that lists a bunch of names that can be selected (one name at a time). I have a card below the slicer that is supposed to show the location of the person selected in the slicer. However, when nothing is selected in the slicer I want the card to show nothing at all or <blank>. At the moment it shows the last location of the person last selected in the slicer - it should be blank as the slicer has no names selected. How can I achieve this?
I am new at DAX and have no clue how to do this. Any help would be great.
Solved! Go to Solution.
If you add a measure to show the location it should work the way you want.
Person Location = SELECTEDVALUE ( YourTable[Location] )
Then you put this measure in the card.
Hi,
I think this could be solved by using:
Measure1 = CALCULATE ( IF ( ISFILTERED ( Table[Column] ), 1, 0 ), ALLSELECTED ( Table ) )
I found this on: https://community.powerbi.com/t5/Desktop/Show-blank-when-nothing-is-selected-in-the-slicers/m-p/6729...
Please mark as solved if this helps 🙂
If you add a measure to show the location it should work the way you want.
Person Location = SELECTEDVALUE ( YourTable[Location] )
Then you put this measure in the card.
This worked perfectly. Thank you!
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 |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 35 | |
| 34 | |
| 24 | |
| 24 |