Forum Discussion

mcornfield's avatar
mcornfield
Helper III
5 years ago
Solved

Multi Row Card Display Unit

Is there an option to change the Display Units in the Multi Row Card? For Example to Millions/Billions 4M 1B. Or is there another downloadable Visual that gives me the same look as a multi Row card w...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi mcornfield 

    Currently, multi-row-card can't format display units like single card visual. But you can achieve your goal by building measures.

    Single card visual has display units in Date Lable.

    Multi-row-card doesn't.

    I build a sample table to have a test.

    Measure:

     

    M_Cost = 
    VAR _A = DIVIDE(SUM('Table'[Cost]),10^6)
    return
    _A&""&"M"
    M_QTY = 
    VAR _A = DIVIDE(SUM('Table'[QTY]),10^8)
    return
    _A&""&"B"

     

    If you want to show Million you can build a measure like M_Cost, or billion you can build a measure like M_QTY.

    Result:

    You can vote up the idea for display units function in multi-row-card. Link: Idea

     

    Best Regards,

    Rico Zhou

     

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