Forum Discussion
AvPowerBI
5 years agoPost Patron
Matrix Visualization - Suppress Zero and Missing Rows
Hi, I am currently using a Matrix Visualization, I want Suppress Zero and Missing Rows? Currently all the Rows are showing because of the way the DAX Measure is being calculated and cannot think...
amitchandak
5 years agoSuper User
AvPowerBI , not very clear. Try measure like
if([measure] =0 , blank(), [measure])
if(calculate([measure]) ,allexcept(Table,Table[row])) =0, blank(), [measure]) // row is column on row.