Forum Discussion
danielpaduck
2 years agoHelper III
Conditional Measure Is Not Totaling Correctly
Hi, I have the following report for test: I have regular hours, then forecasted hours (regular x 2) and then a conditional measure that states the following: Hours (Conditiona...
- 2 years ago
you can try, assuming you have the values in different tables. But it is as TomMartens says, without the data model we cannot give an accurate answer.
SUMX(FILTER(TableHour,TableHour[date] >= 201901 && TableHour[date] <= 201901),TableHour[hour])+SUMX(FILTER(TableHourF,TableHourF[date] > 201901),TableHourF[hour])
bestevezdyb
2 years agoFrequent Visitor
you can try, assuming you have the values in different tables. But it is as TomMartens says, without the data model we cannot give an accurate answer.
SUMX(
FILTER(
TableHour,
TableHour[date] >= 201901 && TableHour[date] <= 201901
),
TableHour[hour]
)
+
SUMX(
FILTER(
TableHourF,
TableHourF[date] > 201901
),
TableHourF[hour]
)