Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jeronimo2334
Helper III
Helper III

Set customized calendar slicers to the corresponding value of today's calendar data.

Hello,

I have a calendar table and I am using slicers for week, month and year.
I am trying to automatically set the selected value on the slicer to the corresponding value of the current date as of today.

Any help is appreciated.

Here are the slicers and the calendar table I am using. The table has a lot more data for years bettwen 2010-2050.

Screenshot 2023-03-09 at 2.21.46 PM.png

 

idcalDatemonthNamemonthShortNameweekOfMonthfiscalYear
45656/25/22JulyJUL12022
45666/26/22JulyJUL12022
45676/27/22JulyJUL12022
45686/28/22JulyJUL12022
45696/29/22JulyJUL12022
45706/30/22JulyJUL12022
45717/1/22JulyJUL12022
45727/2/22JulyJUL22022
45737/3/22JulyJUL22022
1 REPLY 1
amitchandak
Super User
Super User

@jeronimo2334 , As of now this is not possible. You need use workaround

 

example

 

Month Type = Switch( True(),
eomonth([Date],0) = eomonth(Today(),-1*month(Today())),"Last year Last Month" ,
eomonth([Date],0) = eomonth(Today(),-1),"Last Month" ,
eomonth([Date],0)= eomonth(Today(),0),"This Month" ,
Format([Date],"MMM-YYYY")
)

 

Is Today = if('Date'[Date]=TODAY(),"Today",[Date]&"")

 

Default Date Today/ This Month / This Year: https://www.youtube.com/watch?v=hfn05preQYA

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.