Forum Discussion
YesP
1 year agoHelper I
Create a measure Current while filtering various month (YDT)
Hi, I have a visualization with YTD and Same Period Last Year. I want to create a measure to get the Actuals of the last Month of the YTD. For instance: I have Data from January to Decmber 13. My fi...
- 1 year ago
Hi,
Try this measure
Measure = calculate([Current],datesbetween(Calendar[date],eomonth(max(calendar[date]),-1)+1,max(calendar[date])))
Hope this helps.
Ashish_Mathur
1 year agoSuper User
Hi,
Try this measure
Measure = calculate([Current],datesbetween(Calendar[date],eomonth(max(calendar[date]),-1)+1,max(calendar[date])))
Hope this helps.
- YesP1 year agoHelper I
Ashish_Mathur this works great. Thank you!
- Ashish_Mathur1 year agoSuper User
You are welcome.