Forum Discussion

Krish89's avatar
Krish89
Helper II
5 years ago
Solved

Remove rows with the value 0 in Matrix visual

Hi Power BI Community,   I have a PBI report where I would like to plot the sales data based on the Electonics type for each month.. I have a table "ElectronicsSales" with a column called "Electro...
  • amitchandak's avatar
    5 years ago

    Krish89 ,

    Try a measure like 

    Measure =

    var _1 =Sum( ElectronicSales[Revenue] )

    return

    if(_1=0 , blank(), _1)