Forum Discussion
dolevh
Helper II
4 years agoSum 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 ...
Jihwan_Kim
Super User
4 years agoHi,
Please check the below picture and the attached pbix file.
It is for creating a new table, and it uses SUMMARIZECOLUMNS function.
Result Table =
SUMMARIZECOLUMNS (
NadRe[FirstDayofMonth],
NadRe[HoodID],
"Count", SUM ( NadRe[Count] )
)