Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahamed_Qlik
Specialist
Specialist

Dates

Hi Guys,

I have following dates :

Date
01-02-2014
28-04-2015

I want the field with all the dates between above two dates.

Kindly Help.

2 Replies
MK_QSL
MVP
MVP

Temp:Load Date(Date#(Date,'DD-MM-YYYY')) as Date Inline

[

  Date

  01-02-2014

  28-04-2015

];

MinMaxDate:

Load Min(Date) as MinDate, Max(Date) as MaxDate Resident Temp;

Drop Table Temp;

Let vMinDate = Num(Peek('MinDate',0,'MinMaxDate'));

Let vMaxDate = Num(Peek('MaxDate',0,'MinMaxDate'));

Drop Table MinMaxDate;

Final:

  Load Date($(vMinDate) + IterNo() - 1) as Date

AutoGenerate 1

While $(vMinDate) + IterNo() - 1 <= $(vMaxDate);

qlikmsg4u
Specialist
Specialist

check the master calendar

Creating A Master Calendar