I can and probably should but I won't. :-) You'll learn a whole
bunch more by using Help and other resources at your command.
The big clue in the pseudocode that I suggested is the DMax()
function. It's a real Access function. You can look it up in Access
help and learn to use it.. It's a Domain Aggregate Function. There
are a few of them. They are useful. They are succinct and their
syntax gives some people grief.
In Access as in other programming environments, nothing exists in
isolation. Sooo... At the point where you are going to create a new
what-ever-it-is-that-you-are-sequencing, find the maximum value in the
sequence number field, add one to it and write that number into that
field in the record for your new thingy. To paraphrase:
MySequenceNumber = DMax(MySequenceNumber) + 1
The real syntax is, of course different. and I don't know the names of
your relevant table and field.
If you haven't already done so, please visit
www.mvps.org/access
HTH
--
-Larry-
--
"Dave" <dave@accessdatapros> wrote in message
news:42AA903B-1B81-4536-90CE-(E-Mail Removed)...
> John and Larry,
>
> OK - you guys are the experts - thats why I come here for help.
> SO John - I can still back out, you are correct and that is just
what I will
> try to do.
> Larry - can you please advise how to impliment the sugggestion you
presented
> above.
>
> I am not sure of all of the ramification of changing this now but we
are NOT
> live yet so now IS the time.
>
> Thanks again,
> D
>
>
> "Dave" <dave@accessdatapros> wrote in message
> news:C463E88C-CC25-499E-8CF1-(E-Mail Removed)...
> > Thank you all.
> > The reason for this is that I have my Invoice Number (number) to
be the
> > same as my OrderID (autonumber).
> > From what you are saying this was a BAD approach?
> > Not sure how easly I can back out now 
> >
> > D
> >
> > "Dave" <(E-Mail Removed)> wrote in message
> > news
77AD5BF-39E0-4943-83E6-(E-Mail Removed)...
> >> Any easy way to force/pick a starting number for a Autonumber
field?
> >>
> >> New table so no records yet.
> >>
> >> Access 2003
> >>
> >>
> >> Thanks in advance
> >> D
> >
>