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! Request now
Hi I'm trying to figure out a date periods problem.
I created the Date Periods table and I'm using the type column with my slicer. I want my tables to be Month To Day(MTD) by default when i close and reopen my report .I should be able to choose another selection for example YTD but When I open my report It should be MTD. How can I do this ?
Hi @Glsmnbsrn ,
Currently the slicer does not have a default value for this function. You can vote for this idea.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Glsmnbsrn , You can use a relative date slicer.
else you can have columns like
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")
)
MTD Type = Switch( True(),
eomonth([Date],0)= eomonth(Today(),0) && [Date] <=today() ,"MTD" ,
Format([Date],"MMM-YYYY")
)
Is Today = if('Date'[Date]=TODAY(),"Today",[Date]&"")
And use MTD measure
refer
Default Date Today/ This Month / This Year: https://www.youtube.com/watch?v=hfn05preQYA&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=35
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 74 | |
| 50 | |
| 47 | |
| 44 |