View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Mel
 
Posts: n/a
Default Sequential Numbering

et voila! Thanks very much, now to understand the formula!

"Ardus Petus" wrote:

Enter your initial value in A1:
8987/010942
Enter my formula in A2:
=LEFT(A1,SEARCH("/",A1)-1)+1&"/"&TEXT(RIGHT(A1,LEN(A1)-SEARCH("/",A1))+1,"000000")
You should get the expected result of:
8988/010943
You can now drag down my formula to get the following sequence numbers.

If your initial value is no t in A1 but in any other cell, just replace A1
with that other cell's address in my formula.

HTH
--
AP

"Mel" a écrit dans le message de news:
...
Hi - sorry I failed! It returns #VALUE! Not sure what that means. I
should've maybe mentioned the numbers go down in a column? I'm a
relatively
new user so appreciate your help!

"Ardus Petus" wrote:

Try this:
=LEFT(A1,SEARCH("/",A1)-1)+1&"/"&TEXT(RIGHT(A1,LEN(A1)-SEARCH("/",A1))+1,"000000")

HTH
--
AP

"Mel" a écrit dans le message de news:
...
I have a two part number for tracking delivery notes, separated by a
slash
and each number increasing sequentially eg 8987/010942, 8988/010943
etc.
How
can I do this automatically? Also Invoice Numbers eg ms/0988/06,
ms/0989/06
etc.

Thanks.