Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need some ideas to develope a macro.
I have a large spreadsheet, and would like to print, then change a cell to the next value on a list, and then print this spreadsheet, and continue until all the items on the list have been used. Any ideas -- Alan Jung Triumph Structures Chatsworth, CA 91311 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub Macro1()
For i = 1 To 20 Range("A1").Value = i Application.Calculate ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True Next End Sub The Calculate is in there just to be sure the print occurs after the dust has settled. -- Gary''s Student - gsnu200727 "qualityxpert" wrote: I need some ideas to develope a macro. I have a large spreadsheet, and would like to print, then change a cell to the next value on a list, and then print this spreadsheet, and continue until all the items on the list have been used. Any ideas -- Alan Jung Triumph Structures Chatsworth, CA 91311 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro not showing in Tools/Macro/Macros yet show up when I goto VBA editor | Excel Programming | |||
Need syntax for RUNning a Word macro with an argument, called from an Excel macro | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |