Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Dear all,
I am having a problem with DAX identifying where there is no data. I can understand why PBI might want to return blanks. But I want 0!
I have a matrix of Months by Fruit and I want to count the number of fruit in each month.
So I calculate Number of Fruit = COUNTROWS(My Table)
Then I create a matrix and I have the columns as months and the rows as fruit. Where there is data I get a count, but where no fruit were sold I just get blanks, where I would prefer 0.
I have tried all varities of
IF(ISBLANK(My Table), 0, COUNTROWS(My Table))
COUNTROWS(My Table) + 0
Can someone tell me what I am missing?
Thank you.
Solved! Go to Solution.
OK. I have found the solution. You get this issue when your dimensions are in your fact table, if you make sure your dimensions are in Dimension tables and select on the dimenions (show items with no data) then you don't have the same problem.
OK. I have found the solution. You get this issue when your dimensions are in your fact table, if you make sure your dimensions are in Dimension tables and select on the dimenions (show items with no data) then you don't have the same problem.
Something you might try might be to convert the number to text using FORMAT, including a text "0", that might prevent the matrix from eliminating those rows. But, in general, that just sort of how matrices work.
User | Count |
---|---|
123 | |
76 | |
62 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |