Forum Discussion
To create a Date Slicer
- Anonymous3 years ago
Hi Anonymous ,
1. first use enter data to create a new table like:2. then please new a measure like:
Measure = VAR _SLICER = MAX('Table'[Slicer]) VAR _TODAY = TODAY() VAR _DATE = MAX('Calendar'[Date]) VAR _LAST_2_DAYS = TODAY() - 2 VAR _FIRSTDATEOFWEEK = TODAY() - WEEKDAY(TODAY(),2) VAR _MONTH = MONTH(_TODAY) VAR _YEAR = YEAR(_TODAY) VAR _FILTER = SWITCH( TRUE(), _SLICER = "Today"&&_DATE=_TODAY,1, _SLICER = "Last 2 days"&&_DATE>=_LAST_2_DAYS&&_DATE<_TODAY,1, _SLICER = "This week"&&_DATE>=_FIRSTDATEOFWEEK&&_DATE<_FIRSTDATEOFWEEK+7,1, _SLICER = "This month"&&_YEAR=YEAR(_DATE)&&_MONTH=MONTH(_DATE),1 ) RETURN _FILTER3. apply it to the filter:
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
- Anonymous3 years ago
Hi Anonymous ,
Best Regards,
Gao
Community Support Team
Hii Anonymous
Is it possible to include custom(date picker) in the same slicer
amitchandak Greg_Deckler Shaurya BI
Hi Anonymous ,
Do you mean adding another such slicer to the inside? Unfortunately, this is not possible at the moment.😥
Best Regards,
Gao
Community Support Team