Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Manipulate specific value from matrix in PBI

Hi there,   I have a matrix with a variety of values as you can see in the screenshot below. I would like to take the total value circled in red and divide it by 7.5 and display it as a card. Is th...
  • v-yueyunzh-msft's avatar
    3 years ago

    Hi , Anonymous 

    According to your description, you want to "take the total value circled in red and divide it by 7.5 and display it as a card".Right?

    Here are the steps you can refer to :
    (1) This is my test data:

    I create a measure put in the Matrix visual:

    Sum Measure = SUM('Table'[Value])+0

    (2)We can create a measure to put on the card visual (you can update the dax based on your specific table name and column name in your side):

    Measure = DIVIDE( SUMX(ALL('Table'[Name]) , 'Table'[Sum Measure]) , 7.5)

    Then we can get your need:

     

     

     

    Thank you for your time and sharing, and thank you for your support and understanding of PowerBI! 

     

    Best Regards,

    Aniya Zhang

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