Forum Discussion
Default Value on Card Visuals Display
- Anonymous3 years ago
Hi y3wan ,
I adjust the measure, please try.
Measure = VAR _a = HASONEVALUE ( 'Table'[Store Location] ) VAR _b = SELECTEDVALUE ( 'Table'[Store Location] ) VAR _c = CALCULATE ( MAX ( 'Table'[Store Location] ), 'Table'[Store Location] = "All" ) RETURN IF ( _a, _b, _c )For this question :"Is there a way that when nothing is selected manually, the option All will be selected instead?", we could only let the slicer option become single by set the "Single select " turn on, could not choose what option to select
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi cst
Thanks for the reply.
Is there a way that when nothing is selected manually, the option All will be selected instead?
I think the measure provided was to display the text All
Hi y3wan ,
I adjust the measure, please try.
Measure =
VAR _a =
HASONEVALUE ( 'Table'[Store Location] )
VAR _b =
SELECTEDVALUE ( 'Table'[Store Location] )
VAR _c =
CALCULATE ( MAX ( 'Table'[Store Location] ), 'Table'[Store Location] = "All" )
RETURN
IF ( _a, _b, _c )
For this question :"Is there a way that when nothing is selected manually, the option All will be selected instead?", we could only let the slicer option become single by set the "Single select " turn on, could not choose what option to select
Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.