Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
I have been trying to replace Blank values as 0 in my matrix visualisation. I have tried using +0 in a new measure and dax functions but no luck. Below is an example of my data and what i am trying to do. Please share your ideas!!
Direction | Category | Date |
I | 1 | 17-Jun |
B | 2 | 18-Jun |
B | 3 | 17-Jun |
I | 1 | 18-Jun |
I | 2 | 20-Jun |
I | 4 | 21-Jun |
B | 5 | 19-Jun |
I am trying to add values as "0" when the count of category for a specific date is null.
Thanks in advance!
Adding 0 to a number/measure (like COUNT) always forces the display of a number. ALWAYS. The fact that you can't see 0's in your matrix points in a different direction. I'd check the formatting of the values in the table. Maybe 0's are formatted as BLANKS by the matrix? Can you check some other visuals?
Best
Darek
What is the measure you are currently using to fill this table? What measures using the +0 trick have you tried?
Hi @Cmcmahan
I have used the following dax:
count = count([category]) + 0
count = if(isblank(count([category)),0,count([category]))
Child Count = VAR rowcount = COUNTROWS ( Child ) RETURN IF ( rowcount = BLANK (), 0, rowcount )
ActualM = IF ( CALCULATE ( SUM ( Expenses[Actual] ) ) = BLANK (), 0, CALCULATE ( SUM ( Expenses[Actual] ) ) )
Using your first measure (count = count([category]) + 0), I was able to get this:
Could you share a screenshot of the fields you have in your Rows/Columns/Values buckets in the visualization pane?
I have also used the same measure in the above screenshot. I tried performing the same for various sets of data i have but still end up getting the same. If i am changing count = count([category])+0 to count=count([category])+1, only the fields in the table withvalues get updated and the blank values remain the same.
[Category Count] = DISTINCTCOUNT( T[Category] ) + 0
Always use the name of the table in front of the column. ALWAYS. And never do that in front of measures. NEVER.
The behavior you're talking about is abnormal. Please restart Power BI.
Best
Darek
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
8 | |
6 | |
5 |
User | Count |
---|---|
17 | |
14 | |
10 | |
9 | |
6 |