QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Who Me Too'd this solution

sunny_talwar

May be this:

Table:

LOAD Id,

    StartDate

FROM

[https://community.qlik.com/thread/208361]

(html, codepage is 1252, embedded labels, table is @1);

FinalTable:

LOAD Id,

  StartDate,

  If(Id = Peek('Id'), Date(Peek('StartDate') - 1)) as EndDate

Resident Table

Order By Id, StartDate desc;

DROP Table Table;


Capture.PNG

View solution in original post

Who Me Too'd this solution