Forum Discussion
NikNithiy
3 years agoHelper I
Matrix/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
3 years agoResolver II
Hi 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!