Forum Discussion
How to get both values of Slicer (Using between Option)
- 7 years ago
Hi DeepDive ,
You can create measures to get Max date and Min date of date slicer like DAX below:
Max date = CALCULATE(MIN(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date]))
Min date = CALCULATE(MAX(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date]))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi DeepDive ,
You can create measures to get Max date and Min date of date slicer like DAX below:
Max date = CALCULATE(MIN(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date]))
Min date = CALCULATE(MAX(CalendarDate[Date]),ALLSELECTED(CalendarDate[Date]))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.