Forum Discussion
Allav
7 years agoFrequent Visitor
Show scatter data only when selecting data
Hello, I am trying to keep my scatter, fever chart empty until something is selected on the left table. I tried using the suggestion found in the forum, to create the measure: SlicerCheck = =if(...
- 7 years ago
hi,@Allav
You can try to use ISFILTERED to add a measure like this:
new SlicerCheck = IF(ISFILTERED(VehicleTrend[ReportDate])=BLANK() ,"Please Select a Report Date", BLANK())
and then set visual level filter:
Here is demo , please try it
Best Regards,
Lin
v-lili6-msft
7 years agoCommunity Support
hi,@Allav
You can try to use ISFILTERED to add a measure like this:
new SlicerCheck = IF(ISFILTERED(VehicleTrend[ReportDate])=BLANK() ,"Please Select a Report Date", BLANK())
and then set visual level filter:
Here is demo , please try it
Best Regards,
Lin
- Allav7 years agoFrequent Visitor
Thanks so much, it worked!