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,
Can anyone help with the following issue - I'm wanting a card to display 0 if another visual is filtered, else show result of calculation;
Solved! Go to Solution.
Hi @Anonymous
Modify your measure like below. The return value of ISFILTERED() is True/False, which cannot be compared with "Negative".
Satisfaction % =
IF (
ISFILTERED ( 'SentimentScore'[Sentiment] )
&& SELECTEDVALUE ( 'SentimentScore'[Sentiment] ) = "Negative",
0,
CALCULATE (
COUNT ( 'SentimentScore'[MessageID] ),
'SentimentScore'[Sentiment] <> "Negative"
)
/ COUNT ( 'SentimentScore'[MessageID] )
)
Kindly let me know if this helps.
Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.
Hi @Anonymous
Modify your measure like below. The return value of ISFILTERED() is True/False, which cannot be compared with "Negative".
Satisfaction % =
IF (
ISFILTERED ( 'SentimentScore'[Sentiment] )
&& SELECTEDVALUE ( 'SentimentScore'[Sentiment] ) = "Negative",
0,
CALCULATE (
COUNT ( 'SentimentScore'[MessageID] ),
'SentimentScore'[Sentiment] <> "Negative"
)
/ COUNT ( 'SentimentScore'[MessageID] )
)
Kindly let me know if this helps.
Community Support Team _ Jing Zhang
If this post helps, please consider Accept it as the solution to help other members find it.
Hi @Anonymous ,
Replcae your DAX with the following:
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 |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |