Forum Discussion
Anonymous
8 years agoNot applicable
Visualisations blank until something (multiple values) selected in a slicer
Hi, I am trying to display blank visuals until user make a selection from the slicer. Using the below two metrics I can make the visuals blank and display the data with single selection but my ch...
- Anonymous8 years ago
HI Anonymous,
You can follow below steps to achive your requiremetn:
1. Create a measure to mark tag based on selected records .
Using Cross Filter: = IF ( COUNTROWS(ALLSELECTED ( 'CALENDAR' )) <> COUNTROWS(ALL ( 'CALENDAR' )) && COUNTROWS ( ALLSELECTED ( 'CALENDAR' ) ) > 1, "Y", "N" )2. Add above measure to visual level filter, then switch filter mode to 'is' to filter "Y" tag.
Result:
Regards,
Xiaoxin Sheng
Anonymous
7 years agoNot applicable
Hi,
Used this measure to filter :
sing Cross Filter: =
IF (
COUNTROWS(ALLSELECTED ( 'CALENDAR' )) <> COUNTROWS(ALL ( 'CALENDAR' ))
&& COUNTROWS ( ALLSELECTED ( 'CALENDAR' ) ) > 1,
"Y",
"N"
)It works fine on Table and Pie viz. but cannot apply to cards, linear guage visualizations. Is there any ither measure that'll work for all visualizations?
Also, is it possible that measures cannot be filtered by another measure?
Please help.
Regards,
Pooja