Forum Discussion

Ammmetthh's avatar
Ammmetthh
New Member
3 months ago
Solved

MULTIPLE CARD

Hi everyone, I have a question about several cards. Does anyone know how I can sort them by value? I only see them sorted alphabetically. Is there an alternative?

  • I would recommend using a Table or Matrix visual instead, since those visuals support sorting by values. As far as I know, native Card visuals in Microsoft Power BI Desktop do not support dynamic sorting by value and are generally displayed in the order the fields are added (or alphabetically in some cases).

5 Replies

  • I would recommend using a Table or Matrix visual instead, since those visuals support sorting by values. As far as I know, native Card visuals in Microsoft Power BI Desktop do not support dynamic sorting by value and are generally displayed in the order the fields are added (or alphabetically in some cases).

  • v-tejrama's avatar
    v-tejrama
    Community Support

    Hi Ammmetthh ,

     

    Thank you Ilgar_Zarbali  for the response provided!

    Has your issue been resolved? If the response provided by the community member addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.

    Thank you.

    • v-tejrama's avatar
      v-tejrama
      Community Support

      Hi Ammmetthh ,

       

      I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.

      Thank you.

  • Ray_Minds's avatar
    Ray_Minds
    Solution Supplier

    Solution:
    There are two possible approaches for sorting by measure values:
    Approach1: 
    Matrix Visual with DAX Ranking :
    As an alternative, we can use a Matrix visual with a DAX ranking function such as
    STEP1: create this below measure
    RANKX(
    ALL(Table[Category]),[Measure],
    DESC
    )
    STEP2: 
    then be formatted to look like a card visual like:
    • Removing headers and gridlines
    • Increasing font size
    • Adding background and spacing
    Approach2: 
    Use Advance card visual:
    STEP1: Go to visualization then get more visuals
    STEP2: search Advance Card then install it
    This visual lets you sort them by values