+ Reply to Thread
Results 1 to 4 of 4

Pre-numbered tickets

  1. #1
    Ripple919
    Guest

    Pre-numbered tickets

    I have a form created in excel we use to write up work orders. I have now
    been asked to keep blank copies (about a hundred at a time) that are
    pre-numbered. Of course, I don't want to change the number, print, change the
    number, print etc, a hundred times to get all those blanks. Do you know how I
    can do this easily? any help would be appreciated.

    Jenni

  2. #2
    Ron de Bruin
    Guest

    Re: Pre-numbered tickets

    Hi Jenni

    Maybe
    http://www.rondebruin.nl/print.htm#number

    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Ripple919" <[email protected]> wrote in message news:[email protected]...
    >I have a form created in excel we use to write up work orders. I have now
    > been asked to keep blank copies (about a hundred at a time) that are
    > pre-numbered. Of course, I don't want to change the number, print, change the
    > number, print etc, a hundred times to get all those blanks. Do you know how I
    > can do this easily? any help would be appreciated.
    >
    > Jenni




  3. #3
    Jim Thomlinson
    Guest

    RE: Pre-numbered tickets

    Here is some code for you. You need to put it into a module and attach a
    button to it. It increments the number in cell E1 on "Sheet1" by 1 and then
    prints a copy. It allows you to print a variable number of copies base on an
    input.

    Public Sub PrintCopies()
    Dim intNumberOfCopies As Integer
    Dim intCounter As Integer

    intNumberOfCopies = InputBox("Please enter the number of copes to
    print.", "Copies", 100)

    For intCounter = 1 To intNumberOfCopies
    With Sheets("Sheet1")
    .Range("E1") = .Range("E1") + 1
    .PrintOut
    End With
    Next intCounter
    End Sub

    If you need help getting this up and runniing just reply back and I can give
    you a hand...

    HTH
    "Ripple919" wrote:

    > I have a form created in excel we use to write up work orders. I have now
    > been asked to keep blank copies (about a hundred at a time) that are
    > pre-numbered. Of course, I don't want to change the number, print, change the
    > number, print etc, a hundred times to get all those blanks. Do you know how I
    > can do this easily? any help would be appreciated.
    >
    > Jenni


  4. #4
    Ripple919
    Guest

    RE: Pre-numbered tickets

    Ron and Jim,

    Thank you both, I took both your suggestions combined them modifed them and
    came up with a great working copy! Thank you!

    "Jim Thomlinson" wrote:

    > Here is some code for you. You need to put it into a module and attach a
    > button to it. It increments the number in cell E1 on "Sheet1" by 1 and then
    > prints a copy. It allows you to print a variable number of copies base on an
    > input.
    >
    > Public Sub PrintCopies()
    > Dim intNumberOfCopies As Integer
    > Dim intCounter As Integer
    >
    > intNumberOfCopies = InputBox("Please enter the number of copes to
    > print.", "Copies", 100)
    >
    > For intCounter = 1 To intNumberOfCopies
    > With Sheets("Sheet1")
    > .Range("E1") = .Range("E1") + 1
    > .PrintOut
    > End With
    > Next intCounter
    > End Sub
    >
    > If you need help getting this up and runniing just reply back and I can give
    > you a hand...
    >
    > HTH
    > "Ripple919" wrote:
    >
    > > I have a form created in excel we use to write up work orders. I have now
    > > been asked to keep blank copies (about a hundred at a time) that are
    > > pre-numbered. Of course, I don't want to change the number, print, change the
    > > number, print etc, a hundred times to get all those blanks. Do you know how I
    > > can do this easily? any help would be appreciated.
    > >
    > > Jenni


+ 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