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

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.


  #2   Report Post  
Posted to microsoft.public.excel.misc
Ardus Petus
 
Posts: n/a
Default Sequential Numbering

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.




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

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.





  #4   Report Post  
Posted to microsoft.public.excel.misc
Ardus Petus
 
Posts: n/a
Default Sequential Numbering

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.







  #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.










  #6   Report Post  
Posted to microsoft.public.excel.misc
hans bal(nl)
 
Posts: n/a
Default Sequential Numbering

Without using too complicated formulas:

Insert a column for the first part of the number ( e.g. column A) and a
column for the second part of your number ( e.g. Column B) and in the third
column use the formula =A1&"/"&B1

Sequential numbering can the be arranged in colums A and B

Hans

"Mel" wrote:

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.


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

Thanks - but that doesn't seem to work, says there's an error in the formula?


"hans bal(nl)" wrote:

Without using too complicated formulas:

Insert a column for the first part of the number ( e.g. column A) and a
column for the second part of your number ( e.g. Column B) and in the third
column use the formula =A1&"/"&B1

Sequential numbering can the be arranged in colums A and B

Hans

"Mel" wrote:

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.


  #8   Report Post  
Posted to microsoft.public.excel.misc
hans bal(nl)
 
Posts: n/a
Default Sequential Numbering

=A1&"/"&B1 works in my Excel, but you can also try : =concatenate(A1;"/";B1)
( ; is the list separator, depending on your regional settings you ay have
to replace it by a , )




"Mel" wrote:

Thanks - but that doesn't seem to work, says there's an error in the formula?


"hans bal(nl)" wrote:

Without using too complicated formulas:

Insert a column for the first part of the number ( e.g. column A) and a
column for the second part of your number ( e.g. Column B) and in the third
column use the formula =A1&"/"&B1

Sequential numbering can the be arranged in colums A and B

Hans

"Mel" wrote:

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.


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

Hi - ok that worked (with the ,) but when I drag down it fills the cells with
the same number?

"hans bal(nl)" wrote:

=A1&"/"&B1 works in my Excel, but you can also try : =concatenate(A1;"/";B1)
( ; is the list separator, depending on your regional settings you ay have
to replace it by a , )




"Mel" wrote:

Thanks - but that doesn't seem to work, says there's an error in the formula?


"hans bal(nl)" wrote:

Without using too complicated formulas:

Insert a column for the first part of the number ( e.g. column A) and a
column for the second part of your number ( e.g. Column B) and in the third
column use the formula =A1&"/"&B1

Sequential numbering can the be arranged in colums A and B

Hans

"Mel" wrote:

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.


  #10   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey
 
Posts: n/a
Default Sequential Numbering

Set calculations to automatic: Tools/Options/Calculation

In article ,
Mel wrote:

Hi - ok that worked (with the ,) but when I drag down it fills the cells with
the same number?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data tracking and auto sequential numbering rajeshparikh64 Excel Worksheet Functions 0 March 28th 06 03:08 AM
In Excel, how do I setup sequential numbering on an invoice? Kostumeroom Excel Worksheet Functions 2 August 20th 05 12:51 AM
Sequential numbering REELAXER Excel Worksheet Functions 1 June 30th 05 12:25 AM
automatic sequential numbering in excel or word greg2 Excel Discussion (Misc queries) 1 January 15th 05 05:35 PM
How do I set up sequential numbering on labels inventorybrokers Excel Worksheet Functions 3 November 19th 04 04:46 PM


All times are GMT +1. The time now is 02:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"