Forum Discussion
VictorV
Helper I
2 years agoHow to Return Latest Value in Column Based on Date
Hi everyone, I need help on this one, I want to create a measure that show lastest Amount based on month. For example, If I select month February, it will show lastest amount of January is 3000. ...
- 2 years ago
Hi,
Does this measure work?
Balance = calculate([Total],calculatetable(lastnonblank(calendar[date],calculate([Total])),datesbetween(Calendar[date],minx(all(calendar[date]),calendar[date]),min(calendar[date])-1)))
VictorV
Helper I
2 years agoThanks a lot, it's work perfect
Ashish_Mathur
Super User
2 years agoYou are welcome.