16.04.2022, 13:28 (This post was last modified: 16.04.2022, 13:30 by Dré.)
Hi,
I try to make a script to calculate years, month days between 2 dates.
I will check like 2 September 2006 and today (16 April 2022)
output must be: 15 years, 7 months, 14 days
i try to make this, but it is really hard for,
i can calculate years 2022 - 2006 - 1 = 15
but if i m with months like this, April = 4, September is 9
4 - 9 = crashing for me
Because it is negative, and it has to take an extra year of the previous calculation.
And the same with days.
Did someone already think how to do this, or is there already an example for doing this?
Before I was thinking to do it with seconds, but that's even harder I think, because there are months like 28 / 29(once a 4 years) / 30 or 31
19.04.2022, 07:30 (This post was last modified: 19.04.2022, 07:31 by Erwin van der Zwart.)
Hi, I the day difference is probably due to a leap year in your start or end date, you could try to add something like this in your code:
Code:
1234567891011121314151617
functionisLeapYear(year)
if ((((year % 4 ==0) and (year % 100~=0)) or (year % 400==0)))thenreturntrueelsereturnfalseendendifisLeapYear(startdate.year) then-- add or remove a daylog('startdate is a leap year')
endifisLeapYear(enddate.year) then-- add or remove a daylog('enddate is a leap year')
end
27.04.2022, 13:18 (This post was last modified: 27.04.2022, 13:19 by Dré.)
Thanks, I choose to use the one of admin and changed it a little, so he calculates the different between today and the set day.
But both thanks for helping me.