Forum Discussion
HBALAMURUGAN
3 years agoFrequent Visitor
Custom YTD
I want to create custom Year To date. I am currently using the query Calculate(Sum(value),DATEADD(Date,-1,Year)) and this calculation is -365 days. I want to give the start date as (Start of the d...
- 3 years ago
Calculate(Sum(value),DATESBETWEEN(Dates[Date],Date(Year(Today())-1,1,1),Today()-365))
wdx223_Daniel
3 years agoCommunity Champion
Calculate(Sum(value),DATESBETWEEN(Dates[Date],Date(Year(Today())-1,1,1),Today()-365))
HBALAMURUGAN
3 years agoFrequent Visitor
Thank you very much for your response, This is working great.