Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Discussion Board for collaboration related to QlikView App Development.
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;