Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Card shows multiple selections rather than just one

Hi all,   I have a dashboard that has data that looks some this: Alphabet Number A 1 B 1 C 2 D 2   In my dashboard, I have a card that displays the numbers and I have ...
  • v-xulin-mstf's avatar
    5 years ago

    Hi Anonymous 

    Create a measure as:

     

    Measure = CONCATENATEX(
    
        VALUES('Table'[Number]),
    
        CALCULATE(
    
            MAX('Table'[Number]),
    
            'Table'[Alphabet] IN FILTERS('Table'[Alphabet])),","
    
            )

     

     

    Here is the output:

    Here is the demo, please try it: Card shows multiple selections rather than just one

     

    Best Regards,

    Link

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