Documentation/Calc Functions/WEEKS

    From The Document Foundation Wiki
    Other languages:


    Function name:

    WEEKS

    Category:

    Date and Time

    Summary:

    Calculates the number of weeks between two dates.

    Syntax:

    WEEKS(StartDate; EndDate; Type)

    Returns:

    Returns an integer value which is the difference between the two given dates in weeks, depending on the calculation mode selected through the Type argument.

    Arguments:

    StartDate is the date (in quotation marks) or a date-time serial number, or a reference to the cell containing one of those types, which is either the start date or the end date of the period for which the calculation is to be carried out.

    EndDate is the date (in quotation marks) or a date-time serial number, or a reference to the cell containing one of those types, which is either the end date or the start date of the period for which the calculation is to be carried out.

    Type is an integer value, either 0 or 1. If Type is 0, then WEEKS returns the number of whole 7-day periods between StartDate and EndDate. If Type is 1, WEEKS calculates the Monday-to-Sunday week that StartDate and EndDate each lie in, and returns the difference between those week numbers.

    • If either StartDate or EndDate is not a valid date expression, then WEEKS reports a #VALUE! error.
    • If StartDate is earlier than EndDate, the result is a positive number; if StartDate is later than EndDate, the result is a negative number.
    • WEEKS ignores any time components of StartDate and EndDate.
    • If Type is non-numeric, then WEEKS reports a #VALUE! error.
    • If Type is a non-integer value, then WEEKS truncates it to an integer.
    • If (after truncation) Type is not equal to either 0 or 1, then WEEKS reports an invalid argument error (Err:502).

    Additional details:

    Details specific to WEEKS function

    WEEKS is not part of the ODF 1.2 international standard and should not be regarded as portable.


    General information about Calc's Date and Time functions

    Note pin.svg

    Note:
    For convenience the information in this subsection is repeated on all pages that describe functions in the Date and Time category.

    • Internal to Calc, a date/time value is handled as a real number and this is sometimes referred to by the term date-time serial number. For example, 2021-02-08 12:00:00 corresponds to the date-time serial number 44235.5. The integer part of a date-time serial number (before the decimal point) is the number of days since a defined start date. The fractional part of a date-time serial number (after the decimal point) is the time of day expressed as a fraction of a day. For example, 0.25 is equivalent to 06:00:00 and 0.75 is equivalent to 18:00:00.
    • Calc uses 1899-12-30 as the default start date (day 0) but you can go to Tools ▸ Options ▸ LibreOffice Calc ▸ Calculate to select alternative start dates; however, unless you have specific requirements for compatibility with legacy spreadsheet applications, we recommend that you do not change this setting. If you copy and paste cells containing date values between different spreadsheets, check that both documents are set to use the same start date to avoid unexpected changes to the dates displayed.
    • Negative date-time serial numbers correspond to dates earlier than Calc's start date. Calc calculates all dates back to 15th October 1582 using the Gregorian calendar. The day before this is 4th October 1582, and Calc uses the Julian calendar for earlier dates.
    • A date-time serial number is the same as any other number, except that we usually choose to display it formatted as a date/time. You can enter a number in a cell and then change the cell’s formatting to display the value as a date/time. You can also enter a date/time in a cell and then change the cell’s formatting to display the date-time serial number.
    • For clarity, the descriptions of the Calc functions within these wiki pages use the standard ISO 8601 format for date and time because this should be independent of your selected locale settings. The default date format on your computer may be different. When entering dates as part of formulas, slashes or dashes used as date separators may be 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 either use the DATE function or place the date in quotation marks and use the ISO 8601 notation. Avoid using locale dependent date formats which may produce errors if the document is loaded under different locale settings.
    • Time zone information is not used by Calc’s Date & Time functions.
    • If you only wish to enter two digits of the year (for example 21 instead of 2021), Calc needs to know whether you mean 2021 or 1921. Go to Tools ▸ Options ▸ LibreOffice ▸ General to view or adjust the range of years which Calc will use to interpret two-digit year values.
    • Calc contains logic to decide how to treat text when encountered as an operand in an arithmetic operation or as an argument to a function that expects a number instead. In this context, unambiguous conversion is possible for ISO 8601 dates and times in their extended formats with separators. For example, the simple formula =1 + "2021-02-08" will usually give the result 2021-02-09 (when formatted as a date). However, this logic may be affected by the settings on the Detailed Calculation Settings dialog, accessed by selecting Tools ▸ Options ▸ LibreOffice Calc ▸ Formula and pressing the Details button in the Detailed Calculation Settings area. If a #VALUE! error occurs, it may be because the Generate #VALUE! error option is selected, in which case you should experiment with one of the other self-explanatory options in the Conversion from text to number drop-down.

    Examples:

    Formula Description Returns
    =WEEKS("2020-10-31"; "2020-11-30"; 0) The function returns the value 4. Since Type is set to 0, WEEKS counts 30 days between the two dates, divides that number by 7, and returns the integer part of the result. 4
    =WEEKS("2020-10-31"; "2020-11-30"; 1) The function returns the value 5. Since Type is set to 1, WEEKS returns the difference between the Monday-to-Sunday week numbers of 2020-11-30 (Friday) and 2020-10-31 (Monday). 5
    =WEEKS("2020-04-01"; "2021-06-15"; 0) The function returns the value 62. Note that the two dates are in different years. 62
    =WEEKS("2021-02-20"; "2021-02-21"; 1) The function returns the value 0. The two dates correspond to a Saturday and the next day, a Sunday. The two days lie within the same Monday-to-Sunday week and so WEEKS returns 0. 0
    =WEEKS("2021-02-21"; "2021-02-22"; 1) The function returns the value 1. The two dates correspond to a Sunday and the next day, a Monday. The week number calculation is based on Monday-to-Sunday weeks, and so the two dates given are in different weeks. 1
    =WEEKS(F1; 44104; F2) where cells F1 and F2 contain the date 2020-10-31 and the value 0 respectively. The function returns the value -4. 44104 is the date-time serial number for 2020-09-30 and StartDate is later than EndDate, so the returned value is negative. −4

    Related LibreOffice functions:

    DAYS

    MONTHS

    YEARS

    ODF standard:

    None.

    Related (or similar) Excel functions:

    None.