Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
theo_pf
Contributor
Contributor

Assign order number based on another dimension column value

Hi all,

Given a table as the one on the screenshot below: 

Captura de Pantalla 2021-10-19 a les 16.31.33.png

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:

Captura de Pantalla 2021-10-19 a les 16.34.42.png

 

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.

2 Replies
Saravanan_Desingh

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
];

commQV15.PNG

theo_pf
Contributor
Contributor
Author

Sorry, I missed to specify I should use chart functions.