Forum Discussion
koorosh
5 years agoPost Partisan
YTD
Hello Experts, what is differnce between two following measures ?
Expenses YTD =calculate(
[Expenses],
DATESYTD('Date'[Date]
))
Expenses_YTD = calculate(
[Expenses],
CALCULATETABLE(
DATESYTD('Date'[Date])
))
koorosh , Datesytd returning a table with a single column of dates.
You are taking that in calculatetable and returning that in the second case. The almost same thing is returned
1 Reply
- amitchandakSuper User
koorosh , Datesytd returning a table with a single column of dates.
You are taking that in calculatetable and returning that in the second case. The almost same thing is returned