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
willpage
Helper II
Helper II

Help with Week Ending Date DAX Column

Hello,

 

Hopefully this is an easy one. I have the following column in my date table, which I use to calculate the last day of the week for each row:

End of Week = 
VAR DayNumberOfWeek = WEEKDAY(LASTDATE('Date Table'[Date]),3)
RETURN
DATEADD(
    'Date Table'[Date],
    6 - DayNumberOfWeek,
    DAY)

 This works fine, except the current week:

willpage_1-1614721756798.png

 

I can't figure out how the DAX code above results in a blank value for this column. In this example, I would have thought that the Date (Monday 1st march) would have 6 - the day number (0) = 6 days added, resulting in Sunday 7th March.

However, the value is blank.

 

Why is this, and how can I make it so this value is not blank?

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

This calculated column formula should work

='Date Table'[Date] + (7 - WEEKDAY('Date Table'[Date],2))

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

This calculated column formula should work

='Date Table'[Date] + (7 - WEEKDAY('Date Table'[Date],2))

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Perfect, thanks. Much simpler than my previous formula, which I adapted from forumula to get week start date, that I found in a blog post somehere.

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
HotChilli
Super User
Super User

Does the date table end before 7th March? The results from DATEADD have to be in the dates column, so to solve it you can construct the date without using dateadd or extend the date table  

@HotChilli  Thanks for your response.

 

The date range of the date table is taken from the earliest and latest dates in a date column from a fact table of timesheet data. So as it is now, the last date in the date table will never be later than the current day.

 

I can easily edit the date table in PQ to go a bit further into the future, but I would be interested to know how I could do a similar calculation to achieve the desired result without needing to do that (out of curiosity)?

 

 

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.