Forum Discussion
NikNithiy
Helper I
3 years agoMatrix/Table Visual - Show Blank Values as Zero
Hi Team, I want to just show the blanks as zero in my table/matrix visual. But when i add a zero at the end of measure it is getting drill down and showing unwanted results means the data behind(fil...
Mkarwa-123
Resolver II
3 years agoHi NikNithiy On top of your DAX measure you can put a condition
IF( value = NULL, 0, value)
Did I answer your question? Mark my post as a solution!