NETWORKDAYS
Returns the number of workdays between a start date and an end date. Holidays can be deducted.
The functions whose names end with _ADD or _EXCEL2003 return the same results as the corresponding Microsoft Excel 2003 functions without the suffix. Use the functions without suffix to get results based on international standards.
This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.2. (ISO/IEC 26300:2-2015)
NETWORKDAYS(StartDate; EndDate [; [ Holidays ] [; Workdays ] ])
AlguskuupƤev on pƤev, millest arvutamist alustatakse. Kui alguskuupƤev on tƶƶpƤev, siis loetakse see esimeseks pƤevaks.
EndDate is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation.
Pühad on mittekohustuslik pühade loend, mis on puhkepäevad. Sisesta lahtrite vahemik, kus pühad on ükshaaval loetletud.
Workdays is an optional list of number values defining standard work week. This list starts by Sunday, workdays are indicated by zero and non-working days by non-zero value.
When entering dates as part of formulas, slashes or dashes used as date separators are interpreted as arithmetic operators. Therefore, dates entered in this format are not recognized as dates and result in erroneous calculations. To keep dates from being interpreted as parts of formulas use the DATE function, for example, DATE(1954;7;20), or place the date in quotation marks and use the ISO 8601 notation, for example, "1954-07-20". Avoid using locale dependent date formats such as "07/20/54", the calculation may produce errors if the document is loaded under different locale settings.
Unambiguous conversion is possible for ISO 8601 dates and times in their extended formats with separators. If a #VALUE! error occurs, then unselect Generate #VALUE! error in LibreOffice - PreferencesTools - Options - LibreOffice Calc - Formula, button Details... in section "Detailed Calculation Settings", Conversion from text to number list box.
This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the value highlighting feature.
Kui palju tƶƶpƤevi jƤi kuupƤevade 15.12.2001 ja 15.01.2002 vahele? AlguskuupƤev asub lahtris C3 ja lƵppkuupƤev lahtris D3. Lahtrid F3 kuni J3 sisaldavad jƵulude ja uusaastaga seotud puhkepƤevi: "24.12.2001", "25.12.2001", "26.12.2001", "31.12.2001", "01.01.2002".
=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays.
How many workdays fall between September 12nd and 25th in 2016 if only Mondays, Tuesdays and Wednesdays are considered as workdays?
=NETWORKDAYS(DATE(2016;9;12); DATE(2016;9;25); ; {1;0;0;0;1;1;1}) returns 6 workdays.