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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Last week data to display in power bi

Hi Folks, I have date column in my report based on date column when user selecting any date i want to display  last Monday date on  my report. Can you please help me on DAX. For example today is 23rd nov tuesday when user selecting on 23/11/2021 Tuesday i want to get date last monday(15/11/2021) same as for all. When ever user selecting any date date on middle of day i want to display always last monday.

 

1 ACCEPTED SOLUTION
PaulOlding
Solution Sage
Solution Sage

Hi @Anonymous 

Here's a measure to get you previous monday

Last Monday = 
VAR _SelectedDate = SELECTEDVALUE('Date'[Date]) 
VAR _Result = _SelectedDate - 7 - WEEKDAY(_SelectedDate, 3)
RETURN
    _Result

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @Anonymous 

If your problem has been solved, you could accept the helpful answer as solution. 

It will help other community members easily find the solution when they get the similar issue.

If you still need help, please share more details.

 

Best Regards,
Community Support Team _ Eason

PaulOlding
Solution Sage
Solution Sage

Hi @Anonymous 

Here's a measure to get you previous monday

Last Monday = 
VAR _SelectedDate = SELECTEDVALUE('Date'[Date]) 
VAR _Result = _SelectedDate - 7 - WEEKDAY(_SelectedDate, 3)
RETURN
    _Result

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.