Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
That image is SAP data calendar , i want to create same calendar in Qlik sense .
and the requirement is they want data from 01/01/2022 to
01/01/2050
LOAD * INLINE [
Date
01/01/2022
01/01/2050
];
I have created master calendar but weeks are not coming like SAP calendar
from SAP calendar 1st week started from 3rd but in qlik 1st week stared from 1st january 2022
so , data is not correct for the selection.
can anyone please help me how to get it in Qlik
Regards,
Buchanangari.
SAP is using ISO Weeks, unbroken weeks
The reason your week 1 is starting from 1st January is because this variable is set to 1;
SET BROKENWEEKS = 1;
You can either change this to 0
OR
specify to use unbroken weeks in your calendar script as below
,Week(tempDate,0,0,4) as Week
Refer this
SAP is using ISO Weeks, unbroken weeks
The reason your week 1 is starting from 1st January is because this variable is set to 1;
SET BROKENWEEKS = 1;
You can either change this to 0
OR
specify to use unbroken weeks in your calendar script as below
,Week(tempDate,0,0,4) as Week
Refer this