WEEKNUM

WEEKNUM calculates the week number of the year for the internal date value as defined in ODF OpenFormula and compatible with other spreadsheet applications.

Supported are two week numbering systems:

System

Description

System 1

The week containing January 1 is the first week of the year, and is numbered week 1.

System 2

The week containing the first Thursday of the year is the first week of the year, and is numbered week 1. That means that week number 1 of any year is the week that contains January 4th. ISO 8601 defines this system and that the week starts on Monday.


Syntax

WEEKNUM

Nilai adalah nilai yang akan diperiksa.

Mode sets the start of the week and the week numbering system. This parameter is optional, if omitted the default value is 1.

System

Mode

Day of the week

System 1

1

Sunday

2

Monday

11

Monday

12

Tuesday

13

Wednesday

14

Thursday

15

Friday

16

Saturday

17

Sunday

System 2

21

Monday (ISO 8601)

150

(ISO 8601, for interoperability with Gnumeric)


Ikon Catatan

Ketika sedang memasukkan tanggal sebagai bagian dari rumus, garis miring atau tanda garis digunakan untuk pemisah tanggal diartikan sebagai operator aritmatika.Karena itu, tanggal yang dimasukkan dalam rumus ini tidak dikenali sebagai tanggal dan hasil dalam perhitungan yang salah. Untuk menjaga tanggal dari diartikan sebagai bagian rumus, gunakan fungsi DATE, untuk contoh, DATE(1954;7;20), atau tempatkan tanggal dalam tanda kutipan dan gunakan notasi ISO 8601, untuk contoh, "1954-07-20". Hindari menggunakan format tanggal lokal seperti "07/20/54", perhitungan mungkin menghasilkan kesalahan jika dokumen dimuat dibawah pengaturan lokal yang berbeda


Ikon Tip

konversi yang tidak ambigu mungkin untuk tanggal dan waktu ISO 8601 dalam format panjangnya dengan pemisah. jika sebuah #VALUE! kesalahan terjadi, maka batal pilih Menghasilkan #VALUE! kesalahanpada LibreOffice Calc - Rumus, tombol Rincian... pada bagian "Pengaturan Perhitungan Terperinci", kotak daftar Konversi dari teks ke angka.


Example

=WEEKNUM(DATE(1995;1;1);1) returns 1

=WEEKNUM(DATE(1995;1;1);2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year.

=WEEKNUM(DATE(1995;1;1);21) returns 52. Week 1 starts on Monday, 1995-01-02.

=WEEKNUM(DATE(1999;1;1);21) returns 53. Week 1 starts on Monday, 1999-01-04.