Hi!
Lets say product E doesn't have any transaction in the Sale table. I want it to be displayed with a 0 in my pivot table so I wrote this measure :
This way, product E gets a 0 but the problem is that every product from every other product group now also get a 0. I don't understand this behavior and I am looking for a solution.
Thank you!
Lets say product E doesn't have any transaction in the Sale table. I want it to be displayed with a 0 in my pivot table so I wrote this measure :
Code:
=CALCULATE( SUM( factSale[Amount] ) + 0; dimProduct[Group] = "Bike" )
This way, product E gets a 0 but the problem is that every product from every other product group now also get a 0. I don't understand this behavior and I am looking for a solution.
Thank you!