Forum Discussion
BiBra
8 years agoHelper III
latest Values
Hello, I am trying to find out how to get the latest values. Dummy data: Name Date Value 1 value2 value 3 sd 12/10-2017 ...
- 8 years ago
NOw you can use this MEASURE
Value at Recent Date = CALCULATE ( SUM ( TableName[Value] ), FILTER ( TableName, TableName[Date] = MAX ( TableName[Date] ) ) )
Zubair_Muhammad
8 years agoCommunity Champion
NOw you can use this MEASURE
Value at Recent Date =
CALCULATE (
SUM ( TableName[Value] ),
FILTER ( TableName, TableName[Date] = MAX ( TableName[Date] ) )
)BiBra
8 years agoHelper III
Is this only for one value?
- Zubair_Muhammad8 years agoCommunity Champion
- BiBra8 years agoHelper III
I have now tried it, however I trying to find out if I am able to use this measurein charts?
- PaulDBrown8 years agoCommunity Champion
Not sure if this will work, but it might be worth a try:
last value = CLOSINGBALANCEMONTH([value], date[date])
EDIT: If the preriod you are looking at is a whole year, use CLOSINGBALANCEYEAR instead.