Forum Discussion
Slicers
- 8 years ago
HI DavidB023,
When looking at the slicer and based on my experienced this appears because of the model, one way to filter out that is to add a the column you are using as slicer in the report level filter or page level filter and take out the blanks values.
Regarding the second part you need to create a measure to calculate the number when all is selected.
Measure = IF ( DISTINCTCOUNT ( Slicer_Table[Slicer column] ) = 1; SUM ( Table[Column] ); "" )This will give the result below:
Regards,
MFelix
HI DavidB023,
When looking at the slicer and based on my experienced this appears because of the model, one way to filter out that is to add a the column you are using as slicer in the report level filter or page level filter and take out the blanks values.
Regarding the second part you need to create a measure to calculate the number when all is selected.
Measure =
IF (
DISTINCTCOUNT ( Slicer_Table[Slicer column] ) = 1;
SUM ( Table[Column] );
""
)This will give the result below:
Regards,
MFelix