Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

multi selections in slicer display blank in visuals

Hi I have a slicer with example values A,B,C,D and 4 single cards. 

yellow_old_5_1-1692624548347.png

when I select A in the slicer the card for A display value but when i have multi selections all display blanks 

my DAX is like this:

SWITCH(TRUE(),
SELECTEDVALUE(Slicer) IN {"A"},Sum(total)).
Thanks for all support.
1 ACCEPTED SOLUTION
v-tangjie-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can update the measure.

Measure = SWITCH(
    TRUE(),
    HASONEVALUE('Table'[slicer]),
    IF(
        SELECTEDVALUE('Table'[slicer]) IN {"A"},
        SUM('Table'[value])
    ),
   SUM('Table'[value])
)

 Then the result is as follows.

vtangjiemsft_0-1692770481018.pngvtangjiemsft_1-1692770491841.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

 

View solution in original post

1 REPLY 1
v-tangjie-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can update the measure.

Measure = SWITCH(
    TRUE(),
    HASONEVALUE('Table'[slicer]),
    IF(
        SELECTEDVALUE('Table'[slicer]) IN {"A"},
        SUM('Table'[value])
    ),
   SUM('Table'[value])
)

 Then the result is as follows.

vtangjiemsft_0-1692770481018.pngvtangjiemsft_1-1692770491841.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.