Hi,
I would like to create a measure that ignores a field filter ( Slicer ), like year or a flag for example.
I have this measure:
SeasonOnly = CALCULATE( Sum( Sales[UnitsSold] ) , FILTER( All( Sales[IsSeason] ), Sales[IsSeason] = 1 ))
Which is quite close to what I need. But when I apply a slicer, this is what happens :
As you can see, when I select 0 in the Slicer, the product Belt will disapear, as its unitsSold with IsSeason = 0 is null. However, the SeasonOnly measure should be there in the table with 56,
Is there anyway to make this work in this context?
Not easy to explain, hope my example could make it clear.
Thanks
Lucas