Forum Discussion
NewbieJono
2 years agoPost Partisan
Last Date
My date table is set to go up to today () one of my data table has data up to 01/03/2024. i want to bring back the latest score from the data table. when I use last day with the date table it...
- 2 years ago
Hi,
I am not sure how your semantic model looks like, but please try something like below whether it suits your requirement.
Latest - CSLatest = CALCULATE ( [Score - CS], LASTDATE(SUMMARIZE(Data, 'Calendar'[Date])) )
Jihwan_Kim
2 years agoSuper User
Hi,
I am not sure how your semantic model looks like, but please try something like below whether it suits your requirement.
Latest - CSLatest =
CALCULATE (
[Score - CS],
LASTDATE(SUMMARIZE(Data, 'Calendar'[Date]))
)
NewbieJono
2 years agoPost Partisan
Thank you, what does summarise do?