week - script and chart function
This function returns an integer representing the week number according to ISO 8601. The week number is calculated from the date interpretation of the expression, according to the standard number interpretation.
Syntax:
week(timestamp [, first_week_day [, broken_weeks [, reference_day]]])
Return data type: integer
Arguments:
Argument | Description |
---|---|
timestamp | The date to evaluate as a timestamp or expression resolving to a timestamp, to convert, for example '2012-10-12'. |
first_week_day |
Integer that defines which day to use as the first day of the week. By default, QlikView functions use Monday as the first day of the week. The following values can be used:
|
broken_weeks |
The setting defines if weeks are broken or not. By default QlikView functions use unbroken weeks. This means that:
The alternative is to use broken weeks.
The following values can be used:
|
reference_day |
The setting defines which day in January to set as reference day to define week 1. By default, QlikView functions use 4 as the reference day. This means that week 1 must contain January 4, or put differently, that week 1 must always have at least 4 days in January. The following values can be used to set a different reference day:
|
Example 1:
week ('2012-10-12')
returns 41
Example 2:
week( '35648')
returns 32, because 35648 = 1997-08-06
Example 3:
week('2012-10-12', 0, 1)
returns 42