Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I wanted to create  a date slicer of Today, last 2 days ,this week and this month
can anybody pls explain
And the slicer order should be in
  Today
  Last 2 days
  this week and
 this month
@PowerBI @powerbi3 @BI @Powerbidesign @Anonymous
Solved! Go to Solution.
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
_FILTER
3. apply it to the filter:
Best Regards,
Gao
Community Support Team
If 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
@Anonymous , You need a date table and one table with all these values
measure
Switch Period = 
var _max = if(isfiltered('Date'),MAX( 'Date'[Date]) , today()),
var _min =
SWITCH(SELECTEDVALUE(Period[PeriodType])
"today",today()
"Last 2 days",eomonth(_max,-1* if( mod(Month(_max),3) =0,3,Month(_max)))+1,
"this week",_max -1*weekday(_max,-1)+1 ,
"this month",eomonth(_max,-1)+1 ,
BLANK())
return
CALCULATE(Sum(Sales[Sales[Amount]),DATESBETWEEN('Date'[Date],_min,_max))
refer for the period type
https://medium.com/chandakamit/power-bi-when-i-felt-lazy-and-i-needed-too-many-measures-ed8de20d9f79
@amitchandak  can you pls explain
and i even want to add custom date picker also
like and it should be in this order:
  Today
  Last 2 days
  this week 
  this month and 
custom(date picker)
when i clicked custom (date picker) it should display date picker 
any idea?
and  i even created a date picker but when i click year it doesn't show all the years
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
_FILTER
3. apply it to the filter:
Best Regards,
Gao
Community Support Team
If 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
Hi @Anonymous  I did the exact same thing but it didnt show in order
can you pls tell me where did i miss
Hi @Anonymous ,
Best Regards,
Gao
Community Support Team
Thank you so much @Anonymous 
and i would like include  date picker also such as:
  Today
  Last 2 days
  this week 
  this month 
is working perfectly fine ...
is there anyway that we could include Custom(Date picker) in the same slicer ?
Thanks in Advance !!!
 @Anonymous @Eyelyn9 @BI @andres777 
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.