Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Range

Hi

I have two dimensions in my report (pivot or straight) displaying start date & end date. Now i want to display all the dates between start date & end date.

3 Replies
RedSky001
Partner - Creator III
Partner - Creator III

You'll need to create a Calendar and use the intevalmatch function (see below for an example)

Calendar: 

LOAD

Date('01/01/2011' + RowNo() - 1) AS Date 

AUTOGENERATE 3000;

   

Transactions:

load * Inline [StartDate,EndDate

01/01/2012,01/06/2012

];

Inner Join IntervalMatch (Date) LOAD

StartDate, EndDate

RESIDENT Transactions;

Not applicable
Author

Xooooooooooooow, Tanks msheraton

RedSky001
Partner - Creator III
Partner - Creator III

Please can you mark my post as correct, thanks