GeoffS Level: VB Lord

 Registered: 29-09-2004 Posts: 536
|
Re: VB data Report
Hi,
How you view data in the table is just that - a "View". It is applied to the table when you want to view it, but the table still stores the data in its original order.
It is possible with most reporting tools to set an OrderBy Property, but without knowing which reporting tool you are using I think the best solution would be to set the data source for your report to a Query, then you can include an OrderBy statement to get it in the order you desire:
SELECT TableName.* FROM TableName ORDER BY Fieldname
____________________________
multi-tasking - the ability to hang more than one app. at the same time.
|