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 September 15. Request your voucher.

Reply
pedroccamaraDBI
Post Partisan
Post Partisan

Total for each date, between 2 dates

Hello all

I have this table:

test.JPG

This is a table to reminde me that i have to pay for each contract, on that day, for all the months between In Date and End Date.
I believe i have to figure out how many months do i have between those 2 dates, add the day and year to that number, and the value to it.
The only problem is that i don't know how to do it and it has to be in power query.
Anyone can help me?
Thanks a lot guys
Pedro

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @pedroccamaraDBI 

 

I am a little bit confused, you want the Months or the days?

 

Vera_33_0-1625104245911.png

(Date.Year([End Date])-Date.Year([In Date]))*12
+
Date.Month([End Date])-Date.Month([In Date])

or

Vera_33_1-1625104320707.png

Duration.TotalDays([End Date]-[In Date])

 

View solution in original post

2 REPLIES 2
Vera_33
Resident Rockstar
Resident Rockstar

Hi @pedroccamaraDBI 

 

I am a little bit confused, you want the Months or the days?

 

Vera_33_0-1625104245911.png

(Date.Year([End Date])-Date.Year([In Date]))*12
+
Date.Month([End Date])-Date.Month([In Date])

or

Vera_33_1-1625104320707.png

Duration.TotalDays([End Date]-[In Date])

 

Very good. Thanks a lot!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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