Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I need to print out 100 plus sheets, with a cell to change numbers in-between
each sheet in ascending numbers. How do i do that? |
#2
![]() |
|||
|
|||
![]()
If you want 100 copies of one sheet, and if the cell is A1, then
Dim i As Integer For i = 1 To 100 Range("A1").Value = i Activesheet.PrintOut Next i If you have 100+ sheets, and you want to have an incremented number in each of their cell A1: Dim i As Integer Dim mySht As Worksheet For Each mySht In ActiveWorkbook.Worksheets i = i + 1 mySht.Range("A1").Value = i mySht.PrintOut Next mySht HTH, Bernie MS Excel MVP "needhelp" <needhelp @discussions.microsoft.com wrote in message ... I need to print out 100 plus sheets, with a cell to change numbers in-between each sheet in ascending numbers. How do i do that? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy cell format to cell on another worksht and update automatical | Excel Worksheet Functions | |||
numbers being entered show in formula bar but not in cell? | Excel Discussion (Misc queries) | |||
Averaging Numbers when 2 numbers in one cell | Excel Worksheet Functions | |||
make a cell empty based on condition | Charts and Charting in Excel | |||
GET.CELL | Excel Worksheet Functions |