|
|
|
|
|
- Week characteristics
- Special case
<Date type>.ToWeekNumber (Function) In french: <Type Date>.VersNuméroDeSemaine Returns the week number within the year that corresponds to the specified date.
MaDate is Date = DateDuJour()
MaDate.VersNuméroDeSemaine()
Syntax
<Result> = <Date>.ToWeekNumber()
<Result>: Integer Week number (between 0 and 53) that corresponds to the specified date. <Date>: Date variable or DateTime variable Date to use. This date can correspond to: - a Date variable.
- a DateTime variable. In this case, only the date is taken into account.
Remarks Week characteristics A week starts on a Monday and ends on a Sunday. For the first days of the year: - If the first day of the year is a Friday, Saturday or Sunday, the week number will be 0. Week #1 will correspond to the first Monday of the year.
- If the first day of the year is a Monday, Tuesday, Wednesday or Thursday, the week number will be 1.
- The days between Sunday of the 52nd week and the 1st of January are in week 53.
Note: To obtain an ISO 8601 week number, use the WeekNumber function. Special case The date storage format allows you to store dates from 01/01/0001 to 12/31/9999.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|