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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Sander1401
Helper II
Helper II

Convert date into last Sunday of the month (Power Query)

Hi All,

 

I have a facttable with data on every Sunday (e.g. 5th of december, 12th of december, etc.). I also have a budgettable with data on every first date of the month (1st of december, 1st of january, etc.).
I need to combine these 2 tables, so at first I converted the budget-date into the week's end (so Sunday), but now I need to convert it to the last Sunday of the month, so:
01-12-2021 >> 26-12-2021

Do you have any ideas how to do that in Power Query?

 

Thanks in advance!

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@Sander1401 add a new custom column to get last Sunday of the month

 

Date.AddDays(Date.EndOfMonth([Column1]),-Date.DayOfWeek(Date.EndOfMonth([Column1]))+1)

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

7 REPLIES 7
magglobal
New Member

Hi @parry2k ,

How are you?

 

Can you help to achive following case?

 

If date anything between

1) 26-Dec-2022 to 29-Jan-2023 then I want column with date 29-Jan-2023

2) 30-Jan-2023 to 26-Feb-2023 then I want column with date 26-Feb-2023

3) 27-Feb-2023 to 26-Mar-2023 then I want column with date 26-Mar-2023

 

Basically, my month end when last sunday of each month, so I need to populate last sunday of the month as end date.

 

Can you suggest, how to achive this?

 

Thanks

MG

parry2k
Super User
Super User

@Sander1401 sorry that was typo, yes indeed it needs -1, glad it worked out. cheers!!

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

parry2k
Super User
Super User

@Sander1401 add a new custom column to get last Sunday of the month

 

Date.AddDays(Date.EndOfMonth([Column1]),-Date.DayOfWeek(Date.EndOfMonth([Column1]))+1)

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

When the last day of the month is a Sunday, this formula returns the previous weeks Sunday (24th March 2024 not the 31st March 2024 as expected). Is there any way to get around this? 

Thanks, Gordon

Hi,

This calculated column formula works as well

Column = Data[Date]-SWITCH(WEEKDAY(EOMONTH(Data[Date],0)+1,2),1-1,2-2,3,-3,4,-4,5,-5,6,-6,7,0)

Hope this helps.

Ashish_Mathur_0-1710726552226.png

 


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

exclude when Date.DayOfWeek(Date.EndOfMonth([xxxxx]) = 6 (the last day of the month is a Sunday - 6)

 

I mean something like:

if Date.DayOfWeek(Date.EndOfMonth([Meter_time])) < 6

then

      Date.AddDays(Date.EndOfMonth([xxxxx]),-Date.DayOfWeek(Date.EndOfMonth([xxxxx]))-1)

else

      Date.EndOfMonth([xxxxx])

 

I've copied thwe formula and I got the tuesdays, so I changed the +1 into -1 and it worked. 
Great help, thank you!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors