Select on of your sheet and change it to page break view.
Then record a new Macro and go ahead and
-move the Breaks to where you need it
-Stop the Macro
-Go to Macro's, and select the Macro you Made and click on "Edit"
-you should see something like these lines:
"
ActiveSheet.VPageBreaks(1).DragOff Direction:=xlToRight, RegionIndex:=1
ActiveSheet.HPageBreaks(1).DragOff Direction:=xlDown, RegionIndex:=1
"
Now all you need to wrap the code with a loop like this one:
"
Dim i As Long
For i = 1 To 80
ActiveSheet.VPageBreaks(1).DragOff Direction:=xlToRight, RegionIndex:=1
ActiveSheet.HPageBreaks(1).DragOff Direction:=xlDown, RegionIndex:=1
Sheets("Sheet" + LTrim(Str(i + 1)) + "").Select
Next i
"
-You can change 80 with any number or variable
-You can Change "Sheet" with your Sheet names (I assume your sheets are in numerical order) if not then you need to call the sheet to the right or left of active sheet.
I hope this helps. I know is late but it may help someone else.