Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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(...
  • Ashish_Mathur's avatar
    5 years ago

    Hi,

    This calculated column formula should work

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