Forum Discussion
Raki39
Helper I
4 years agodisplay values till current month-1
Hi, I have a requirement where I need to display values till current month-1( if the month is march, I have to show all the values till feb including all the previous values). In this case, I have a...
- 4 years ago
Raki39 , One is a relative date slicer, if that can work
or create measure like
calculate([Measure], filter(Table, Table[Date] <=eomonth(today(),-1))
amitchandak
Super User
4 years agoRaki39 , One is a relative date slicer, if that can work
or create measure like
calculate([Measure], filter(Table, Table[Date] <=eomonth(today(),-1))
- Raki394 years ago
Helper I
Perfectly worked for my requirement.
Thankyou!! for the solution amitchandak