Discussion board where members can learn more about Qlik Sense App Development and Usage.
Hi all,
Given a table as the one on the screenshot below:
I would love to create a new column on the right side giving me the order of each row based on its ID and its antiquity as well. In other words, my desired output should look as follows:
I know this is doable in Qlik View by combining aggr() and rowno() functions. Nevertheless I've tried to replicate this method in Qlik Sense but all my attempts had been unsuccessful so far. How should I do to get this outcome?
Thanks a lot in advance.
Try this,
tab1:
LOAD *, AutoNumber(RowNo(),ID) As ORDER INLINE [
ID, DATE, STATUS
1, 1/2/2020, Done
1, 1/3/2020, Done
1, 1/5/2020, Done
1, 1/6/2020, Done
1, 1/8/2020, Pending
2, 1/4/2020, Done
2, 1/5/2020, Done
3, 1/3/2020, Done
3, 1/4/2020, Done
3, 1/7/2020, Pending
];
Sorry, I missed to specify I should use chart functions.