+ Reply to Thread
Results 1 to 3 of 3

SET UP AUTOMATIC INVOICE NUMBERS

  1. #1
    nothingnice
    Guest

    SET UP AUTOMATIC INVOICE NUMBERS

    I need to know how to create automatic invoice numbering in excel.
    thank you

  2. #2
    Paul B
    Guest

    Re: SET UP AUTOMATIC INVOICE NUMBERS

    nothingnice,

    A simple way would be to use something like this, you could assign it to a
    button, an open or before print event.

    Sheets("Sheet1").Range("A1").Value = _

    Sheets("Sheet1").Range("A1").Value + 1



    For other ways to do this or if this is going to be used in a temple have a
    look here

    http://www.mcgimpsey.com/excel/udfs/sequentialnums.html
    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003


    "nothingnice" <[email protected]> wrote in message
    news:[email protected]...
    >I need to know how to create automatic invoice numbering in excel.
    > thank you




  3. #3
    bbc1
    Guest

    Re: SET UP AUTOMATIC INVOICE NUMBERS

    You could assign this to a button set which cell has invoice no.
    Sub number()
    Sheet1.Unprotect
    'Increment the invoice number
    [G3] = [G3] + 1
    Sheet1.Protect
    End Sub

    "Paul B" wrote:

    > nothingnice,
    >
    > A simple way would be to use something like this, you could assign it to a
    > button, an open or before print event.
    >
    > Sheets("Sheet1").Range("A1").Value = _
    >
    > Sheets("Sheet1").Range("A1").Value + 1
    >
    >
    >
    > For other ways to do this or if this is going to be used in a temple have a
    > look here
    >
    > http://www.mcgimpsey.com/excel/udfs/sequentialnums.html
    > --
    > Paul B
    > Always backup your data before trying something new
    > Please post any response to the newsgroups so others can benefit from it
    > Feedback on answers is always appreciated!
    > Using Excel 2002 & 2003
    >
    >
    > "nothingnice" <[email protected]> wrote in message
    > news:[email protected]...
    > >I need to know how to create automatic invoice numbering in excel.
    > > thank you

    >
    >
    >


+ 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