Forum Discussion
Krish89
5 years agoHelper II
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...
- 5 years ago
Krish89 ,
Try a measure like
Measure =
var _1 =Sum( ElectronicSales[Revenue] )
return
if(_1=0 , blank(), _1)
amitchandak
5 years agoSuper User
Krish89 ,
Try a measure like
Measure =
var _1 =Sum( ElectronicSales[Revenue] )
return
if(_1=0 , blank(), _1)
- Krish895 years agoHelper II
- v-deddai1-msft5 years agoCommunity Support
Hi Krish89 ,
Just use the following measure:
Sales Revenue= Sum( ElectronicSales[Revenue] )+0If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
- SuruboiR3 years agoNew Member
could u pls share measure DAX formula again, given formula is not working.