+ Reply to Thread
Results 1 to 2 of 2

Sequential numbering on a blank form?

  1. #1
    Ferree
    Guest

    Sequential numbering on a blank form?

    I have created a blank form in Excel and I want to print 100 today and number
    them sequentially. Next month, I want to start with number 101 and number
    sequentially. Can I format this to print with a different number on each form

  2. #2
    DS-NTE
    Guest

    Re: Sequential numbering on a blank form?

    Try sth like this:

    In the code module for the workbook:
    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    Worksheets("Sheet1").Range("A1") = Worksheets("Sheet1").Range("A1") + 1
    End Sub

    In a standard module:

    Sub PrintMe()
    i = 1
    For i = 1 To 100
    ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
    Next i
    End Sub


    In A1 enter 0 and then run PrintMe

    Hope you get the idea,adjust to your needs.

    knut

    "Ferree" <[email protected]> skrev i melding
    news:[email protected]...
    >I have created a blank form in Excel and I want to print 100 today and
    >number
    > them sequentially. Next month, I want to start with number 101 and number
    > sequentially. Can I format this to print with a different number on each
    > form




+ 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