alphabetical sorting

deepbreath

Registered User.
Local time
Today, 04:36
Joined
Apr 18, 2001
Messages
73
i have list of contacts and their addresses. i want to build a report in alphabetical orders, no matter how the record is entered, with a serial number, which automatically adjust itself if a new record is entered
thanx
 
Two ways to do this. The easiest is to base your report on a query and set the sort of the name field to ascending. Or if you are familiar with coding, Set the orderby property in the report's open event.
Report_Open
me.orderbyon=true
me.orderby="fieldname"
 

Users who are viewing this thread

Back
Top Bottom