Skip to main content Skip to complementary content

FirstWeekDay

Integer that defines which day to use as the first day of the week.

Syntax:  

FirstWeekDay

Monday is the first day of the week according to ISO 8601, the international standard for the representation of dates and times. Monday is also used as the first day of the week in a number of countries, for example on the UK, France, Germany and Sweden.

But in other countries, like in the United States and Canada, Sunday is considered to be the start of the week.

In Qlik Sense, the regional settings are fetched when the app is created, and the corresponding settings are stored in the script as environment variables.

A North American app developer often gets Set FirstWeekDay=6; in the script, corresponding to Sunday. A European app developer often gets Set FirstWeekDay=0; in the script, corresponding to Monday.

Values that can be set for FirstWeekDay

Value

Day

0

Monday

1

Tuesday

2

Wednesday

3

Thursday

4

Friday

5

Saturday

6

Sunday 

Regional settings

Unless otherwise specified, the examples in this topic use the following date format: MM/DD/YYYY. The date format is specified in the SET DateFormat statement in your data load script. The default date formatting may be different in your system, due to your regional settings and other factors. You can change the formats in the examples below to suit your requirements. Or you can change the formats in your load script to match these examples.

Default regional settings in apps are based on the regional system settings of the computer or server where Qlik Sense is installed. If the Qlik Sense server you are accessing is set to Sweden, the Data load editor will use Swedish regional settings for dates, time, and currency. These regional format settings are not related to the language displayed in the Qlik Sense user interface. Qlik Sense will be displayed in the same language as the browser you are using.

Examples:  

If you want ISO settings for weeks and week numbers, make sure to have the following in the script:

Set FirstWeekDay=0; // Monday as first week day Set BrokenWeeks=0; Set ReferenceDay=4;

If you want US settings, make sure to have the following in the script:

Set FirstWeekDay=6; // Sunday as first week day Set BrokenWeeks=1; Set ReferenceDay=1;

Example 1 – Using default value (script)

Example 2 – Changing the FirstWeekDay variable (script)

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!