+ Reply to Thread
Results 1 to 3 of 3

Cell counter

Hybrid View

  1. #1
    Haza
    Guest

    Cell counter

    Is it possibly to have a counter in a cell, so it automaticly counts every
    document I print. Rank in a cell is 1 on the first doc, 2 on the second 3 on
    the third and so on.
    Please help me!

  2. #2
    Gary''s Student
    Guest

    RE: Cell counter

    Let's use A1 as the counter. Enter and run the following macro:


    Sub printandcount()
    Cells(1, 1) = Cells(1, 1) + 1
    ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
    End Sub

    If you run the macro instead of pressing the print icon, A1 will track the
    number of prints.
    --
    Gary's Student


    "Haza" wrote:

    > Is it possibly to have a counter in a cell, so it automaticly counts every
    > document I print. Rank in a cell is 1 on the first doc, 2 on the second 3 on
    > the third and so on.
    > Please help me!


  3. #3
    Haza
    Guest

    RE: Cell counter

    Thanks a lot Gary!!!

    "Gary''s Student" skrev:

    > Let's use A1 as the counter. Enter and run the following macro:
    >
    >
    > Sub printandcount()
    > Cells(1, 1) = Cells(1, 1) + 1
    > ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
    > End Sub
    >
    > If you run the macro instead of pressing the print icon, A1 will track the
    > number of prints.
    > --
    > Gary's Student
    >
    >
    > "Haza" wrote:
    >
    > > Is it possibly to have a counter in a cell, so it automaticly counts every
    > > document I print. Rank in a cell is 1 on the first doc, 2 on the second 3 on
    > > the third and so on.
    > > Please help me!


+ 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