Hi Team,
Request for your support to resolve the displaying issue with selected value. I have written the code for this. But for non-selection, it is not displaying message which i want.
Here my requirement is i want to display the elements based on Slicer selection.
If i am selecting one value from slicer, it will show the same, but for more than one selection, it will display "Multiple Selection" .
Upto this my code is working but i want to display "All" for no selection in slicer. It is not displaying "All".
Please find the code which i have written below.
If you look at the above image, here in the L4_Desc slicer there is no selection, but in the L4_DESC card below , it is showing " Multiple Selection" but i was expaecting "All" in that. But if i select more than one in the L4_Desc slicer, the message is coming correctly like "Multiple Selection"...
Please help to resolve this.
Regards,
Sagar
Solved! Go to Solution.
Hey @sagarsahoo_123 ,
you have to incorporate the DAX function ISFILTERED in your DAX statement: ISFILTERED – DAX Guide
Then your measure will look like this:
Measure =
IF( ISFILTERED( 'DimStore'[StoreName] )
, SELECTEDVALUE( 'DimStore'[StoreName] , "Multiple Selection" )
, "All"
)
The result - the bottom right card visual is the important one:
The top right card only contains a simple measure for illustrative purposes.
Hopefully, this provides an idea of how to tackle your challenge.
Regards,
Tom
Hey @sagarsahoo_123 ,
you have to incorporate the DAX function ISFILTERED in your DAX statement: ISFILTERED – DAX Guide
Then your measure will look like this:
Measure =
IF( ISFILTERED( 'DimStore'[StoreName] )
, SELECTEDVALUE( 'DimStore'[StoreName] , "Multiple Selection" )
, "All"
)
The result - the bottom right card visual is the important one:
The top right card only contains a simple measure for illustrative purposes.
Hopefully, this provides an idea of how to tackle your challenge.
Regards,
Tom
Hi @TomMartens ,
Thanks a lot for your quick support. It realy helped to resolve the issue.
Regards,
Sagar
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
This session will provide guidance and teach campers the skills required to build Power BI reports that support multiple languages.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
219 | |
56 | |
47 | |
44 | |
43 |
User | Count |
---|---|
297 | |
207 | |
75 | |
75 | |
68 |