Forum Discussion
Most Recent Date & Value
- 4 years ago
Hi,
For calculations using most recent date you can use this logic:
var curdate = max('Calendar'[Date])
var lastestdate = CALCULATE(MAX('Table'[Date]),ALL('Calendar'),'Table'[Date]<=curdate) return
CALCULATE([Measure],'Table'[Date]=latestdate)
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Hi,
For calculations using most recent date you can use this logic:
var curdate = max('Calendar'[Date])
var lastestdate = CALCULATE(MAX('Table'[Date]),ALL('Calendar'),'Table'[Date]<=curdate) return
CALCULATE([Measure],'Table'[Date]=latestdate)
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
- ringovski4 years ago
Helper II
Thanks for the reply, wasn't quite the answer but it put me on the right path. I ended up with;
DAX:
Recent LGA Cases =
VAR CurrentLGA = SELECTEDVALUE(NSW[LGA Name])VAR MAXXDATE = MAXX(
FILTER(ALL('NSW'),'NSW'[LGA Name] = CurrentLGA && NSW[active cases] <>0),NSW[Date])
RETURN
CALCULATE(SUM(NSW[Active Cases]), NSW[Date] = MAXXDate)