Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have multiple count cards on my dashboard that are filtering for 'New' items. I am currently using conditional formatting that changes the color to the background if there are no values butmy director wants the card to show zero instead. Since it's not a calculated value or sum as I've seen other DAX calculations solve, is there a way for the count card to show zero if there is no data?
Solved! Go to Solution.
I guess something like:
Measure = COALESCE ( COUNT ( 'Your Table'[Title] ), 0 )
You should put it to your visual instead of 'Count of Title'.
I guess something like:
Measure = COALESCE ( COUNT ( 'Your Table'[Title] ), 0 )
You should put it to your visual instead of 'Count of Title'.
That worked I think, thanks!
Great.
BTW, there is also another option to achieve this:
Measure = COUNT ( 'Your Table'[Title] ) + 0
Hi,
I'd advise you to check documentation on COALESCE. Here's the link - https://learn.microsoft.com/en-US/sql/t-sql/language-elements/coalesce-transact-sql?view=sql-server-...
Your measure will look like:
Measure = COALESCE ( <your calculation>, 0 )
Thank you for the response but unsure what to put in <your calculation>. So I haven't created any measures.
I basically have a card where I'm using 'Count of Title' and filtering for Category = 'Newly Identified'. When there are no Titles with a 'Newly Identified' as the category it's showing as (blank) when I want it to show zero.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
88 | |
52 | |
45 | |
39 | |
38 |