Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
gopikrishnach
Creator
Creator

Unable to get the correct Row Number

Hi all,

In qlikview, if i load partial data the row number is coming correctly where as if i load full data for one value the row number is showing different.

Add below expression.

=Aggr(RowNo(), WORKCENTER,IND)

1 Solution

Accepted Solutions
swuehl
MVP
MVP

If you are on a recent version of QV, try

=Aggr(Rowno(), WORKCENTER, (IND, (Text, ascending)) )

The sortable Aggr function is finally here!

Aggr() is sorting dimension values by load order by default, that's probably causing the differences you see.

View solution in original post

1 Reply
swuehl
MVP
MVP

If you are on a recent version of QV, try

=Aggr(Rowno(), WORKCENTER, (IND, (Text, ascending)) )

The sortable Aggr function is finally here!

Aggr() is sorting dimension values by load order by default, that's probably causing the differences you see.