Forum Discussion
Filter always on
- 8 years ago
Hi JWorthy,
Don't know if you are using measure to create your charts, but one way would be to wrap your measure around an error clause so that if people select more tha one option in the slicer it give error and no result on the chart something like this:
Count answer = IF ( DISTINCTCOUNT ( Table[Slicer] ) <> 1; ERROR ( "Onle one value per slicer" ); [Measure] )This will give you an empty chart.
Regards,
MFelix
Hi JWorthy,
Don't know if you are using measure to create your charts, but one way would be to wrap your measure around an error clause so that if people select more tha one option in the slicer it give error and no result on the chart something like this:
Count answer =
IF (
DISTINCTCOUNT ( Table[Slicer] ) <> 1;
ERROR ( "Onle one value per slicer" );
[Measure]
)This will give you an empty chart.
Regards,
MFelix
- JWorthy8 years agoAdvocate I
Hi MFelix,
This sounds promising. I'm not using a measure unfortunately, pretty new to this, so I wouldn't be sure how to build the chart using a measure and then use your suggestion.
Is there a way to work it into a chart I've created from the standard click and drag options?
Thanks!
- MFelix8 years agoSuper User
Hi JWorthy,
This is not possible using only the point and click options.
Believe that you want people to have additional filter options otherwise you would not place the slicer on your report.
I would suggest to create a calculated measure to make the report results, and then wrapping it around the error message.
If you need any help is needed please tell me.
Regards,
MFelix