Forum Discussion
Corleen
9 years agoRegular Visitor
Sum by Maximum Month
Good day I have created the following measures Expenditure = CALCULATE(sum(Balance[Balance]), Balance[Account Type] = "Expenditure") ~ this gives me sum of the balance where account type is ...
- 9 years ago
You can try this measure and show the result in Card visual.
HighMonthSum = VAR HighestMonth = [Highest Expenditure Month] RETURN CALCULATE ( [Expenditure], FILTER ( Balance, Balance[bookkeeping month] = HighestMonth ) )Best Regards,
Herbert
v-haibl-msft
9 years agoMicrosoft Employee
You can try this measure and show the result in Card visual.
HighMonthSum =
VAR HighestMonth = [Highest Expenditure Month]
RETURN
CALCULATE (
[Expenditure],
FILTER ( Balance, Balance[bookkeeping month] = HighestMonth )
)
Best Regards,
Herbert