Forum Discussion

Peter_2020's avatar
Peter_2020
Helper III
3 years ago
Solved

SUM with specific filter 2

Hi all,  I would like to ask you for help with following situation: I have this table with lot of different PO´s. The issue I will explain you on one PO like an example: As you can see each P...
  • johnt75's avatar
    3 years ago

    OK, try

    Sum hours =
    CALCULATE (
        SUM ( 'Table'[Hours] ),
        ALLEXCEPT ( 'Table', 'Table'[PO], 'Table'[Operation] )
    )