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

Rowno() from bottom to top

hello,

i want to have the rownumbers from bottom to top to know the latest data.

¿is there any way to do it?

thank you

pd:i have also a column of unique date as yyyymm  if that can help.

1 Solution

Accepted Solutions
Kushal_Chawda

try below

Data:

LOAD *

FROM Table:

DataSort:

noconcatenate

LOAD *,

          Rowno() as RowNo

resident Data

order by Date desc;

drop table Data;

View solution in original post

2 Replies
Kushal_Chawda

try below

Data:

LOAD *

FROM Table:

DataSort:

noconcatenate

LOAD *,

          Rowno() as RowNo

resident Data

order by Date desc;

drop table Data;

Anonymous
Not applicable
Author

hi

Yes You can have By using chart

The rownumbers from bottom to top to know the latest data By Using

On RowNumber

Chart--> Sort Tab --> Numeric Value --> Descending Order

Regards

Tahemas Momin