NUM.SETTIMANA

NUM.SETTIMANA restituisce il numero della settimana di una data espressa come numero seriale, come definito in ODF OpenFormula e compatibile con altre applicazioni per fogli elettronici.

Sono supportati due sistemi di numerazione per le settimane:

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

NUM.SETTIMANA(Numero [; Modo])

Numero è il numero di data interno.

Modo imposta l'inizio della settimana e il suo sistema di numerazione. Il parametro è facoltativo; se omesso, il valore predefinito è 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)


Icona di nota

Quando inserite date come parte di una formula, le barre o i trattini usati come separatori di data sono interpretati come operatori aritmetici. Le date immesse in questo formato, dunque, non sono riconosciute come date e generano calcoli errati. Per fare in modo che le date siano considerate come parti della formula utilizzate la funzione DATA, per esempio DATA(1954;7;20), o racchiudete la data tra virgolette e utilizzate la notazione ISO 8601, per esempio "1954-07-20". Evitate di utilizzare i formati di data dipendenti da quelli regionali tipo "07/20/54", poiché il calcolo potrebbe generare errori se il documento venisse caricato utilizzando delle impostazioni regionali diverse.


Icona di suggerimento

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


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.