+ Reply to Thread
Results 1 to 3 of 3

counter

  1. #1
    Haza
    Guest

    counter

    Please somebody!
    I wount a visible counter to one of the cells that counts how many papers i
    print out.
    The first paper 1, second 2 and so on.


  2. #2
    Dave O
    Guest

    Re: counter

    This can be done by recording your print macro, and then a line to the
    macro the increments the value of a particular cell by 1. This
    provides the counter mechanism you're looking for.

    The line to add to your macro is
    Range("sheet1!a1").Value = Range("sheet1!a1").Value + 1

    Where your counter is located on Sheet1 cell A1. You can change this
    to match your sprdsht, of course.


  3. #3
    Haza
    Guest

    Re: counter

    Yeah, just so I mean,
    Thanks Dave!

    "Dave O" skrev:

    > This can be done by recording your print macro, and then a line to the
    > macro the increments the value of a particular cell by 1. This
    > provides the counter mechanism you're looking for.
    >
    > The line to add to your macro is
    > Range("sheet1!a1").Value = Range("sheet1!a1").Value + 1
    >
    > Where your counter is located on Sheet1 cell A1. You can change this
    > to match your sprdsht, of course.
    >
    >


+ 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