Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default How can I make a sequential number list that will print 1 per pg.

I want to be able to print off the numbers from my check runs. I would key in
the range but I want to print it off 1 check number per page.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default How can I make a sequential number list that will print 1 per pg.

Do you mean print the same page multiple times with different numbers in
sequence. In the below macro the sequence numbers are formatted to print as
6 numerics (zero padded). You can adjust the range to suit..

Sub PrintTemplate()
Range("A1").NumberFormat = "@"
For varNum = 100 To 500
Range("A1") = Format(varNum, "000000")
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Next
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Bonni" wrote:

I want to be able to print off the numbers from my check runs. I would key in
the range but I want to print it off 1 check number per page.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default How can I make a sequential number list that will print 1 per

This would probably help if I knew how to set it up. I've never worked with
macros. But to answer your question, I would feed in my "remit" papers to
the copier and have the check number print on them in a particular spot.
"right now we're are all writing them on the copies which takes us an hour
each." Can you still help?

"Jacob Skaria" wrote:

Do you mean print the same page multiple times with different numbers in
sequence. In the below macro the sequence numbers are formatted to print as
6 numerics (zero padded). You can adjust the range to suit..

Sub PrintTemplate()
Range("A1").NumberFormat = "@"
For varNum = 100 To 500
Range("A1") = Format(varNum, "000000")
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Next
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Bonni" wrote:

I want to be able to print off the numbers from my check runs. I would key in
the range but I want to print it off 1 check number per page.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default How can I make a sequential number list that will print 1 per

Fine Bonni, here we go..

--Set the Security level to low/medium in (Tools|Macro|Security).
--From workbook launch VBE using short-key Alt+F11.
--From menu 'Insert' a module and paste the below code.
--Get back to Workbook.
--Run macro from Tools|Macro|Run <selected macro()

The changes to the macro
--Mention the cell ..Right now it is mentioned as Range("A1")
--For doing a test you can give a smaller range 100 to 105
--The number of zeroes in Format(varNum, "000000") needs to be adjusted to
suit your requirement
--Now set the sheet to print exactly to one page (by default) and try the
macro...


If this post helps click Yes
---------------
Jacob Skaria


"Bonni" wrote:

This would probably help if I knew how to set it up. I've never worked with
macros. But to answer your question, I would feed in my "remit" papers to
the copier and have the check number print on them in a particular spot.
"right now we're are all writing them on the copies which takes us an hour
each." Can you still help?

"Jacob Skaria" wrote:

Do you mean print the same page multiple times with different numbers in
sequence. In the below macro the sequence numbers are formatted to print as
6 numerics (zero padded). You can adjust the range to suit..

Sub PrintTemplate()
Range("A1").NumberFormat = "@"
For varNum = 100 To 500
Range("A1") = Format(varNum, "000000")
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Next
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Bonni" wrote:

I want to be able to print off the numbers from my check runs. I would key in
the range but I want to print it off 1 check number per page.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Use validation for (sometimes) sequential number list a-one-and-a-two Excel Discussion (Misc queries) 1 March 24th 08 05:20 PM
Make an Excel cell create a new sequential number each printing Kurt Excel Discussion (Misc queries) 1 April 24th 06 12:46 AM
Make sequential numbers each time sheet is opened Darrell Shuman Excel Worksheet Functions 1 October 19th 05 03:35 AM
print multiple copies of the same page with sequential numbers labrat Excel Discussion (Misc queries) 1 June 14th 05 05:32 PM
How can i print sequential page numbers 1 to 10, if i have one wo. DJN822 Excel Discussion (Misc queries) 2 March 24th 05 04:41 AM


All times are GMT +1. The time now is 05:48 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"