DATEDIF

This function returns the number of whole days, months or years between Start date and End date.

Syntax

DATEDIF(Start date; End date; Interval)

Start date is the date from when the calculation is carried out.

End date is the date until the calculation is carried out. End date must be later, than Start date.

Interval is a string, accepted values are "d", "m", "y", "ym", "md" or "yd".

Note Icon

Vedant datas kaip formules dalis, brūkšneliai naudojami kaip datos skirtukai yra atpažįstami kaip aritmetiniai operatoriai. Tai reiškia, kad datos įvestos tokiu formatu nebus atpažintos kaip datos ir gražins klaidingus rezultatus. Norint, kad datos nebūtų interpretuojamos kaip formulės dalis naudokite funkcija DATE, pavyzdžiui DATE(1954;7;20), arba datą rašykite tarp kabučių ir naudokite ISO 8601 žymėjimą, pavyzdžiui "1954-07-20". Stenkitės nenaudoti datos formatų kurie priklauso nuo lokalės, tokių kaip "07/20/54", nes jei dokumentas bus pakrautas iš skirtingos lokalės skaičiavimai gali būti klaidingi.


Tip Icon

Vienareikšmiškas konvertavimas yra įmanomas ISO 8601 datai ir laikui išplėstiniame formate su skirtukais. Jei atsiranda klaida #VALUE!, nuimkite žymėjimą nuo Generuoti klaidos pranešimą #REIKŠMĖ! → „LibreOffice“ Skaičiuoklė → Formulės → Parinkti sekcijoje Išsamios skaičiavimo nuostatos sąrašo langelyje Konvertavimas iš teksto į skaičius.


Value for "Interval"

Return value

"d"

Number of whole days between Start date and End date.

"m"

Number of whole months between Start date and End date.

"y"

Number of whole years between Start date and End date.

"ym"

Number of whole months when subtracting years from the difference of Start date and End date.

"md"

Number of whole days when subtracting years and months from the difference of Start date and End date.

"yd"

Number of whole days when subtracting years from the difference of Start date and End date.


Example

Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13.

=DATEDIF("1974-04-17";"2012-06-13";"y") yields 38.

=DATEDIF("1974-04-17";"2012-06-13";"ym") yields 1.

=DATEDIF("1974-04-17";"2012-06-13";"md") yields 27.

So he is 38 years, 1 month and 27 days old.

=DATEDIF(DATE(1974,4,17);"2012-06-13";"m") yields 457, he has been living for 457 months.

=DATEDIF("1974-04-17";"2012-06-13";"d") yields 13937, he has been living for 13937 days.

=DATEDIF("1974-04-17";DATE(2012;06;13);"yd") yields 57, his birthday was 57 days ago.