ABEIDSDAG

The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of workdays away from the start date.

Syntax

WORKDAY(StartDate; Days; Holidays)

Startdato: datoen hvorfra beregningen blir utført. Hvis startdatoen er en arbeidsdag, er dagen en del av beregningen.

Dager: antall arbeidsdager. Positiv verdi for et resultat etter startdatoen, negativ verdi for et resultat før startdatoen.

Fridager: liste over valgfrie fridager. Disse er ikke-arbeidsdager. Skriv inn et celleområde hvor fridagene er skrevet individuelt.

Merknadsikon

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.


Tipsikon

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 Calc - Formula, button Details... in section "Detailed Calculation Settings", Conversion from text to number list box.


Example

What date came 17 workdays after 1 December 2001? Enter the start date "2001-12-01" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: "2001-12-24", "2001-12-25", "2001-12-26", "2001-12-31", "2002-01-01".

=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD.