Forum Discussion

Irussaa's avatar
Irussaa
Helper I
6 years ago
Solved

ASAP - Need formula

Hi guys,   Anyone have formulation to generate weekending data like the picture below (rounded in red line)? I need colum of data that contain week ending date with format just like in the pict at...
  • v-eachen-msft's avatar
    6 years ago

    Hi Irussaa ,

     

    If you want a DAX formula, you could try the following DAX:

    Column =
    "W" & WEEKNUM ( 'DateDim'[WeekEnding], 1 ) & " "
        & MONTH ( 'DateDim'[WeekEnding] ) & "/"
        & DAY ( 'DateDim'[WeekEnding] )