A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Contact Record Sort



 
 
Thread Tools Display Modes
  #1  
Old March 1st, 2010, 02:25 PM posted to microsoft.public.access.gettingstarted
Deeds37
external usenet poster
 
Posts: 9
Default Contact Record Sort

I have a database with over 200 records and the primary key is an auto number
for each contact. When the information was exported to the database, it was
exported with last name sort and each individual has a unique auto number.

When I add new contacts to the database, it generates a new auto number
which is fine, but the new contact with last name starting with "A" is the
last record, can the database sort itself with last name before closing?

Deeds37
  #2  
Old March 1st, 2010, 03:09 PM posted to microsoft.public.access.gettingstarted
Steve[_77_]
external usenet poster
 
Posts: 1,017
Default Contact Record Sort

New records are always added at the end of the list. Whereever you need to
use the names, use a query based on the table and sort by last name in the
query. Forms and Reports can use a query for their recordsource just as easy
as a table.

Steve



"Deeds37" wrote in message
...
I have a database with over 200 records and the primary key is an auto
number
for each contact. When the information was exported to the database, it
was
exported with last name sort and each individual has a unique auto number.

When I add new contacts to the database, it generates a new auto number
which is fine, but the new contact with last name starting with "A" is the
last record, can the database sort itself with last name before closing?

Deeds37



  #3  
Old March 1st, 2010, 05:25 PM posted to microsoft.public.access.gettingstarted
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Contact Record Sort

On Mon, 1 Mar 2010 06:25:01 -0800, Deeds37
wrote:

I have a database with over 200 records and the primary key is an auto number
for each contact. When the information was exported to the database, it was
exported with last name sort and each individual has a unique auto number.

When I add new contacts to the database, it generates a new auto number
which is fine, but the new contact with last name starting with "A" is the
last record, can the database sort itself with last name before closing?

Deeds37


You don't.

A Database in Access is the .mdb or .accdb container file for multiple Tables,
Forms, Reports, queries and code. You're talking about a table within the
database.

Secondly, a Table *has no order*. It should be thought of as a bucket full of
data; there is no "first record" or "next record" concept.

Thirdly, an Autonumber has one purpose and one purpose only: to provide a
meaningless unique identifier for a record. New autonumbers will be assigned
as new records are added; there will often be gaps in the numbering, and it
will certainly not go back and renumber the existing autonumbers when you
insert a new record.


If you want to see records in some particular order (as you certainly will!)
you must - no option - use a Query to sort the records. Don't use table
datasheets for anything other than debugging; normally you will interact with
the data by using a Form based on a Query, sorted in the order you choose. To
print out records, you'll use a Report, and set that report's Sorting and
Grouping dialog to specify the order. The order of records in the table is
uncontrollable, and in essence, irrelevant; you don't need to even know what
that order is, since the other tools - queries and Reports - can control the
order in which the records are displayed.

Here are some resources to help you get started; the tutorials at the end of
the list should give you a good start. Good luck with your database!

Jeff Conrad's resources page:
http://www.accessmvp.com/JConrad/acc...resources.html

The Access Web resources page:
http://www.mvps.org/access/resources/index.html

Roger Carlson's tutorials, samples and tips:
http://www.rogersaccesslibrary.com/

A free tutorial written by Crystal:
http://allenbrowne.com/casu-22.html

A video how-to series by Crystal:
http://www.YouTube.com/user/LearnAccessByCrystal

MVP Allen Browne's tutorials:
http://allenbrowne.com/links.html#Tutorials

--

John W. Vinson [MVP]
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:13 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.