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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
powertechbi
Frequent Visitor

Help with fixed Date

Good afternoon

I have the following question: I have a column with the check-out dates of hotel guests and I need to create a new column that always brings me the 15th of the month following the check-out date.

Examples: 08/10/24 - return 09/15/2024

10/23/2024 - return 11/15/2024


Would anyone know how to do it?

 

powertechbi_0-1728069132821.png

 

1 ACCEPTED SOLUTION
Kaviraj11
Super User
Super User

Calculated column:

NextMonth15th = 
DATE(YEAR([CheckOutDate]), MONTH([CheckOutDate]) + 1, 15)

 

Power Query

= Date.From(Date.AddMonths([CheckOutDate], 1)) + (15 - Date.Day(Date.From(Date.AddMonths([CheckOutDate], 1))))



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

Proud to be a Super User!





View solution in original post

3 REPLIES 3
ThxAlot
Super User
Super User

Easy enough,

= EOMONTH([check-out date],0)+15


Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LearnAndPractise(Everyday)


)



Kaviraj11
Super User
Super User

Calculated column:

NextMonth15th = 
DATE(YEAR([CheckOutDate]), MONTH([CheckOutDate]) + 1, 15)

 

Power Query

= Date.From(Date.AddMonths([CheckOutDate], 1)) + (15 - Date.Day(Date.From(Date.AddMonths([CheckOutDate], 1))))



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

Proud to be a Super User!





OktayPamuk80
Helper V
Helper V

Hi,

Try:

Following Date = DATEADD(STARTOFMONTH( NEXTMONTH('Table'[Date])),14,DAY)

 

Better Option to create the required field in the Power Query (if you run into performance issues).

Regards,

Oktay

 

If it helps, appreciate for Kudos and mark as solution 🙏🏻!!!

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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