Autonumber from Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
I am trying to create a form that will allow users to add a new record with
an autonumber displayed for the current record they are adding. So starting
with 001, 002, 003. After those are entered and the user wants to add a new
record, it would say 004. Any way of doing this? I searched the forum, but I
don't see how the solution would be applied to a form. Please advise.
 
If you can incorporate a cell into your form you can do this:

Provided your lines entered are in A1:P100 and your running number is
in A1:

Use a cell somewhere say Q1 which will hold the next number to use:
=max(A:A)+1

Hans
 
Back
Top