Question on the Northwind DB regarding the Orders Form and OrdersT

G

Guest

I am working on a new Call Log DB in which the Call Log Form will assign an
unduplicated Call Number for each new record. I'd like to use the Primary Key
[CallLogID] of my Call Log table to be this record number. However, I'd like
to start the record numbering with a 5-digit number, eg: start numbering at
10001, not 1.

I've looked at how Northwind does this but I can't figure it out. Ther
Primary key of the Orders table starts with 10248. Is this done in code or am
I not seeing all the previous Orders, starting with 1?

I've asked a similar question this Forum before but I don't think I
explained it clearly, so I'm trying again. Sorry for the duplication!
 
B

Brian

Dan said:
I am working on a new Call Log DB in which the Call Log Form will assign an
unduplicated Call Number for each new record. I'd like to use the Primary Key
[CallLogID] of my Call Log table to be this record number. However, I'd like
to start the record numbering with a 5-digit number, eg: start numbering at
10001, not 1.

I've looked at how Northwind does this but I can't figure it out. Ther
Primary key of the Orders table starts with 10248. Is this done in code or am
I not seeing all the previous Orders, starting with 1?

I've asked a similar question this Forum before but I don't think I
explained it clearly, so I'm trying again. Sorry for the duplication!

Here's a way to set the starting value of an autonumber to a value you
choose:

http://support.microsoft.com/kb/209696

You don't need any code, it only needs to be done once!
 
G

Guest

Brian:
Thanks! That's just what I wanted!

Brian said:
Dan said:
I am working on a new Call Log DB in which the Call Log Form will assign an
unduplicated Call Number for each new record. I'd like to use the Primary Key
[CallLogID] of my Call Log table to be this record number. However, I'd like
to start the record numbering with a 5-digit number, eg: start numbering at
10001, not 1.

I've looked at how Northwind does this but I can't figure it out. Ther
Primary key of the Orders table starts with 10248. Is this done in code or am
I not seeing all the previous Orders, starting with 1?

I've asked a similar question this Forum before but I don't think I
explained it clearly, so I'm trying again. Sorry for the duplication!

Here's a way to set the starting value of an autonumber to a value you
choose:

http://support.microsoft.com/kb/209696

You don't need any code, it only needs to be done once!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top