Forum Discussion
davidsimm10
5 years agoFrequent Visitor
Sum error
DaysAbove = what-if parameter I have a tabular table with Date and CountID and a DaysWhereFlag. (If the count of that ID goes over the 'DaysAbove') DaysWhereFlag = IF(COUNT(BedModelData[Pa...
Anonymous
5 years agoNot applicable
You can just sum the flag measure, try:
measure = Sumx(All(table), DaysWhereFlags)
or
measure = Sumx(table,DaysWhereFlags)
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.