Forum Discussion
aj1107
Advocate I
9 years agoDisplay zero instead of blank in matrix
Need to dsiplay zero instead of blank in matrix. Though it looks simple, am struggling to get it done. Heres the sample record. id,name,status 1,a,s 1,b,h 2,d,s Output in power bi. Nee...
Vvelarde
Community Champion
9 years ago
Hi, you can obtain this view following these steps:
1.Create a new Table (Modeling-New Table)
Tablepr=Distinct(Table1[pr]
2. Related both tables
3. Create the Measure to Count IDs
CountIDs=Count(Table[id]) + 0
Ready
Matrix Visual
Subhraz
Advocate I
7 years ago@ Vvelarde
This is a great solution. In my case in the matrix few cells are empty as there's no correspoding values coming from source DB.
Even NULL is not coming. If Null comes then BLANK() function works. Nothing worked till now no matter what I did. Finally this is simple trick worked. Thanks a lot.