Is there a way i can sort a report on .rfx
I want to sort my report by name and the same report again by date! My question is is there a way i can sorting on the report side without having to modify my stored procedure ?
There are several ways of doing this. When you say you are using a Stored Procedure do you mean that you're calling code within a back end server such as SQL Server or Oracle to generate the data source for the report?
a report generally scans through it's data source the way it is sorted. So if you index the cursor or view you got from SQL Server you are able to sort the data on differing fields and then output in that special order.
Code:
SELECT ReportCursor
INDEX ON myfield TAG sorting
SET ORDER TO sorting
REPORT FORM ...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.