Forum Discussion
ArdraM
2 years agoFrequent Visitor
Dynamic date range selection
Hi, I've a date slicer in my report that is of type before. Here is the requirement I'm struggling with: If the date selected is 5/1/24 (1rst of may) then date range taken for all calculation...
- Anonymous2 years ago
use the below measure
End Date = MAX('Calendar'[Date])Start Date =var a = 'Calendar'[End Date]var b = IF(DAY('Calendar'[End Date])=1,-2,-1)var c = EOMONTH('Calendar'[End Date],b)+1return cI am getting the expected output
Anonymous
2 years agoNot applicable
use the below measure
End Date = MAX('Calendar'[Date])
Start Date =
var a = 'Calendar'[End Date]
var b = IF(DAY('Calendar'[End Date])=1,-2,-1)
var c = EOMONTH('Calendar'[End Date],b)+1
return c
I am getting the expected output