Forum Discussion

mizaskun's avatar
mizaskun
Icon for Helper II rankHelper II
5 years ago
Solved

Modify measures depending on filters

Good morning,   I have a very simple model:   User Type Amount A Z 100 A Z 200 A Y 50   I created the following measure: TotalByUser = calculate( sum(Table[Amount]), all...
  • daxer-almighty's avatar
    daxer-almighty
    5 years ago
    TotalByUser =
    CALCULATE(
        SUM( Table[Amount] ),
        VALUES( Table[User] ),
        ALLSELECTED( 'Table' )
    )

    It might be that the above does what you want...