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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Anonymous
Not applicable

Current WeekDates

Hi 

i would like to know how to write a DAX code that shows 

the current week dates 

 

eg. Monday - 01 March 2021 till Sunday 07 March 2021

 

Thank you 

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

Hi, @Anonymous 

According to your description, I guess that you want to transform your data value in the format as “Monday - 01 March 2021” and place it into a Slicer. I think you can achieve this using a calculated column because measure can not be placed into Slicer in Power BI. you can try this calculate column:

current week date =

var _weekday=FORMAT([Date],"dddd")

var _daynumber=DAY([Date])

var _month=FORMAT([Date],"mmmm")

var _year=YEAR([Date])

return

_weekday&"-"&_daynumber&" "&_month&" "&_year

The output of this calculated column is like this:

v-robertq-msft_0-1615185444814.png

 

Then you can create a Slicer and place it into the slicer, like this:

v-robertq-msft_1-1615185444838.png

 

And you can get what you want.

You can download my test pbix file here

 

If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.

How to Get Your Question Answered Quickly 

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-robertq-msft
Community Support
Community Support

Hi, @Anonymous 

According to your description, I guess that you want to transform your data value in the format as “Monday - 01 March 2021” and place it into a Slicer. I think you can achieve this using a calculated column because measure can not be placed into Slicer in Power BI. you can try this calculate column:

current week date =

var _weekday=FORMAT([Date],"dddd")

var _daynumber=DAY([Date])

var _month=FORMAT([Date],"mmmm")

var _year=YEAR([Date])

return

_weekday&"-"&_daynumber&" "&_month&" "&_year

The output of this calculated column is like this:

v-robertq-msft_0-1615185444814.png

 

Then you can create a Slicer and place it into the slicer, like this:

v-robertq-msft_1-1615185444838.png

 

And you can get what you want.

You can download my test pbix file here

 

If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.

How to Get Your Question Answered Quickly 

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , You can try like

 

Week Start date = today() +-1*WEEKDAY('today() ,2)+1
Week End date = today() + 7-1*WEEKDAY(today() ,2)

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

Thank you for this 

however i need to place this as a measure so that it shows on the slicer

@Anonymous , for that you need to have this type of column in your date table and use that as filter

 

Week Type = Switch( True(),
[start week]<=Today() && [end date]>=Today(),"This Week" ,
[start week]<=Today()-7 && [end date]>=Today()-7,"Last Week" ,
[Week Name]
)

 

Refer this video : https://www.youtube.com/watch?v=hfn05preQYA

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

hi 

unfortunately this is not working for me 

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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