Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Divide Row Value with a measure

Hi everyone,   I have a survey which can be completed by several people from the same company. I want the average score per category and this is done by taking the value in the score column and div...
  • mahoneypat's avatar
    5 years ago

    Here is a measure expression you can try

     

    Avg for Company and Category =
    CALCULATE (
        AVERAGE ( Table[Score] ),
        ALLEXCEPT (
            Table,
            Table[Company],
            Table[Category]
        )
    )

     

    Pat