Forum Discussion
M_SBS_6
2 years agoHelper V
Measure to return value latest date
Hi,
I have a measure
Calculate ( sum ( app[total]), app[status] in { "live"})
What I now need is the measure above to incorporate the latest date. The date is app[date].
Any idea how I do this please?
Simply try :
LatestTotalMeasure = CALCULATE( SUM(app[total]), app[status] IN { "live" }, app[date] = MAX(app[date]) )