+ Reply to Thread
Results 1 to 11 of 11

Sequential Numbering

  1. #1
    Mel
    Guest

    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. #2
    Ardus Petus
    Guest

    Re: Sequential Numbering

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

    HTH
    --
    AP

    "Mel" <[email protected]> a écrit dans le message de news:
    [email protected]...
    >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. #3
    Mel
    Guest

    Re: 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" <[email protected]> a écrit dans le message de news:
    > [email protected]...
    > >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. #4
    Ardus Petus
    Guest

    Re: 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" <[email protected]> a écrit dans le message de news:
    [email protected]...
    > 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" <[email protected]> a écrit dans le message de news:
    >> [email protected]...
    >> >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. #5
    hans bal(nl)
    Guest

    RE: 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.
    >
    >


  6. #6
    Mel
    Guest

    Re: 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" <[email protected]> a écrit dans le message de news:
    > [email protected]...
    > > 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" <[email protected]> a écrit dans le message de news:
    > >> [email protected]...
    > >> >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. #7
    Mel
    Guest

    RE: 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. #8
    hans bal(nl)
    Guest

    RE: 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. #9
    Mel
    Guest

    RE: 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. #10
    JE McGimpsey
    Guest

    Re: Sequential Numbering

    Set calculations to automatic: Tools/Options/Calculation

    In article <[email protected]>,
    Mel <[email protected]> wrote:

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


  11. #11
    Mel
    Guest

    Re: Sequential Numbering

    Thanks, but calculations set to automatic already... must be doing something
    wrong?

    "JE McGimpsey" wrote:

    > Set calculations to automatic: Tools/Options/Calculation
    >
    > In article <[email protected]>,
    > Mel <[email protected]> wrote:
    >
    > > Hi - ok that worked (with the ,) but when I drag down it fills the cells with
    > > the same number?

    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1