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 have a formula that works well to use in a slicer so that I can select certain date ranges like Week, Month & Year.
Using DATEMTD and DATEYTD work well though I am needing to do something similar for WTD though the only way I can do it is so that I use DATESINPERIOD to get 7 days from today's date.
Here is the formula below:
Solved! Go to Solution.
Hi @Austen229022 ,
Hope everything is going well.
We regret to inform you that there is currently no function that displays data based on the week Today is in.
Alternatives are:
Date Periods =
UNION(
ADDCOLUMNS(DATESBETWEEN(Sales[Datekey], TODAY()-7, TODAY()),"Type", "Week","Order",1),
ADDCOLUMNS(DATESMTD(Sales[Datekey]), "Type", "Month","Order",2),
ADDCOLUMNS(DATESYTD(Sales[Datekey]), "Type", "Year","Order",3)
)
Drag the fields of the table into the report page for display. The page effect is as follows:
It displays the date from the previous seven days to Today calculated based on Today.
If you want to know more about, please click on the following document.
DATESBETWEEN function (DAX) - DAX | Microsoft Learn
Pbix file is attached.
If there is anything else you need my help with please feel free to contact me.
Best Regards,
Yang
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!
Hi @Austen229022 ,
Hope everything is going well.
We regret to inform you that there is currently no function that displays data based on the week Today is in.
Alternatives are:
Date Periods =
UNION(
ADDCOLUMNS(DATESBETWEEN(Sales[Datekey], TODAY()-7, TODAY()),"Type", "Week","Order",1),
ADDCOLUMNS(DATESMTD(Sales[Datekey]), "Type", "Month","Order",2),
ADDCOLUMNS(DATESYTD(Sales[Datekey]), "Type", "Year","Order",3)
)
Drag the fields of the table into the report page for display. The page effect is as follows:
It displays the date from the previous seven days to Today calculated based on Today.
If you want to know more about, please click on the following document.
DATESBETWEEN function (DAX) - DAX | Microsoft Learn
Pbix file is attached.
If there is anything else you need my help with please feel free to contact me.
Best Regards,
Yang
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!
Can you please explain your problem bit clearly.
I am wanting to have it so that it shows the calendar week - same as MTD and YTD, instead of 7 days from today
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.