Forum Discussion

dolevh's avatar
dolevh
Icon for Helper II rankHelper II
4 years ago
Solved

Sum Measure with Filter

Hi,  I'm looking for Dax that show me the Total Count if (FirstDayofMonth = FirstDayofMonth and AreaID = AreaID and CityCode = CityCode and HoodID = HoodID).   My name of this table is: NadRe   ...
  • smpa01's avatar
    4 years ago

    dolevh  you can simply use this measure

    Measure =
    CALCULATE (
        SUM ( 'Table'[Count] ),
        ALLEXCEPT ( 'Table', 'Table'[FirstDayofMonth], 'Table'[HoodID] )
    )