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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Irussaa
Helper I
Helper I

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 attached.

Inked01_LI.jpg

 

Thank you.

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

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] )

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

10 REPLIES 10
v-eachen-msft
Community Support
Community Support

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] )

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

It works!  @v-eachen-msft 

 

But I have one more question, why is that first week ending in the beginning of the month (which is the first week in january) already generate WE2 not WE1? 

 

InkedWE OK_LI.jpg

 

Thank you

Hi @Irussaa ,

 

Replace WEEKNUM ( 'DateDim'[WeekEnding], 1 ) with WEEKNUM ( 'DateDim'[WeekEnding], 2 ). After my tests, it will work.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

@v-eachen-msft I'm sorry can I ask one more question?

 

Why the WE data isn't arranged in the chart?

 

WE NOT ARRANGED.PNG

 

Thank you!

@Irussaa Please change your WE column "Sort By Column" to the WeekEndingNumber that needs to be derived from WeekEndingDate. (As you can't directly use the WeekEndingDate for Sort By Column, as WE is using that field)





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




@PattemManohar okay thanks!

@v-eachen-msft thank you so much!

Nathaniel_C
Super User
Super User

Hi @Irussaa 

 

ColumnName = 

Text.Combine({[Week]," ",Number.ToText([MonthN]),"/", Number.ToText(Date.Day 
 (Date.EndOfWeek([date]))})

 

Tell me if this works, since I did not have your table, I did this free hand. This is in Power Query.
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @Nathaniel_C 

 

I try to apply 

ColumnName = 

Text.Combine({[Week]," ",Number.ToText([MonthN]),"/", Number.ToText(Date.Day 
 (Date.EndOfWeek([date]))})

 

Inside my data set:

 

WE = Text.Combine({[DayofWeek]," ",Number.ToText([MonthofYear]),"/", Number.ToText(DateDim[Day]
(Date.EndOfWeek([Date]))})
 
003.PNG
 
But its Error.
 
Can you explain to me what is 
[Week]
[MonthN]
Date.Day
(Date.EndOfWeek([date])

Hello @Irussaa ,
Here is a link to Power Query Power Query . It is the best place to add Calculated Columns.

However this is a way that you can do it in Power BI. 

WE= table[Week] && " " && table[MonthN] && "/" && Day(table[Date]+ 7-WEEKDAY(table[Date],1))

In your post you show a table with columns. I took the name of the columns from that picture. You will want to replace "table" in my formula with your table name. 
weekend.PNG

 

 
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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