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
Hi All,
I am trying to change a card value on dashboard to turn Blank when I select a particular filter.
Case : All values are Selected in a Type of booking filter ( Default)
A card value (Target) is shown on my dashboard
Task: When a user selects Offline, The target value should show as blank
We have used If condition to turn this to blank but that is not working, could anyone please help in resolving this
Solved! Go to Solution.
@Anonymous , use isfiltered
if(isfiltered(Table[Column]) , [Measure], blank())
or
= var _is = calculate(isfiltered(Table[Column]), allselected())
return
if(_is , [Measure], blank())
HasOneValue , Isfiltered: https://www.youtube.com/watch?v=hXg3kRFSGjA&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=38
@Anonymous , use isfiltered
if(isfiltered(Table[Column]) , [Measure], blank())
or
= var _is = calculate(isfiltered(Table[Column]), allselected())
return
if(_is , [Measure], blank())
HasOneValue , Isfiltered: https://www.youtube.com/watch?v=hXg3kRFSGjA&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=38
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 | |
| 34 | |
| 33 | |
| 25 | |
| 24 |