NÚMSEMANA

A função NÚMSEMANA devolve o número de semana de uma data específica, em conformidade com o norma ODF OpenFormula e compatível com as outras aplicações de produtividade.

A função aceita dois sistemas de numeração:

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

NÚMSEMANA(número; modo)

número é o número da data interna.

modo define o início da semana e o sistema de numeração. Este parâmetro é opcional e, se omisso, é utilizado o valor 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)


Ícone de nota

Ao introduzir datas como parte integrante de fórmulas, as barras ou traços utilizados como separadores serão interpretados como operadores aritméticos. Assim, as datas introduzidas nestes formatos não serão reconhecidas e irão originar cálculos errados. Se quiser utilizar datas como parte integrante de fórmulas, utilize a função DATA, por exemplo, DATA(1954;7;20) ou coloque a data entre aspas e utilize o formato ISO8601, por exemplo: "1954-07-20". Também não deve utilizar formatos de data consoante a sua configuração regional tais como "07/20/54", uma vez que o cálculo poderá originar erros se o documento for aberto com definições de configuração regional diferentes das suas.


Ícone da dica

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.