I have a table with the Group - 'Group1' , Group1 has the expression =Int((RowNumber(Nothing)-1)/10) to enable paging. This expression limits 10 results per page.
Now I have added the interactive sort expression for the column 'Sales ID' as =Fields!Sales_ID.Value to sort the column.
E.g. I have a result with 56 records , on the 1st Page sorting works as
Page 1:
A
B
C
....
Page 2: [Sorting works ,but limits to current scope]
A
D
Z
....
I would want the result like.A
A
B
The problem with this setup is that it sorts only the current set of records in View of the table. How is it possible to sort the entire result?
C# Fan!