Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Row Totals

I am trying to create get the totals from my WeightedScore column. The weighted score are correct nothing populating at the bottom. The "weightedscore" was a calculated field created in Excel before ...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi Anonymous 

     

    You can use the following dax to create a calculate column:

    Column = 'Table'[Score] * 'Table'[Points] * 0.01


    If you want create a seperate measure that will give you the total of weighted score, please try the following measure and then put it into a card visual.

    Measure = SUM('Table'[Column])



     

     

     

     

     

     

    Best Regards,

    Jayleny

     

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