Forum Discussion
pedroccamaraDBI
5 years agoPost Partisan
Total for each date, between 2 dates
Hello all I have this table: 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 ...
- Anonymous5 years ago
I am a little bit confused, you want the Months or the days?
(Date.Year([End Date])-Date.Year([In Date]))*12 + Date.Month([End Date])-Date.Month([In Date])or
Duration.TotalDays([End Date]-[In Date])
Anonymous
5 years agoNot applicable
I am a little bit confused, you want the Months or the days?
(Date.Year([End Date])-Date.Year([In Date]))*12
+
Date.Month([End Date])-Date.Month([In Date])or
Duration.TotalDays([End Date]-[In Date])
- pedroccamaraDBI5 years agoPost Partisan
Very good. Thanks a lot!