Thread: Set print area
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Mery[_3_] Mery[_3_] is offline
external usenet poster
 
Posts: 2
Default Set print area



Korisnik "Mike H" napisao je:

Hi,

I may have misunderstood but I calulate that a page break every 2 rows is 25
page breaks. Try this. Right click your sheet tab, view code and paste this
in and run it.

Sub standard()
For x = 21 To 501 Step 20
Cells(x, 1).Select
ActiveSheet.HPageBreaks.Add befo=ActiveCell
Next
End Sub

Mike

"Mery" wrote:

Hi, I have a little problem and I hope to find some useful answers!
Particulary , I wont to do for once command in exel in one Sheet make each
twentieth row to be break page and get it at once the 500 break pages.

Any help will be valuable!
Thanks in advance!
Mery


It's works,Thank you very much!!