How do I insert a page break between every row and column?

  • Thread starter Thread starter Ashley
  • Start date Start date
A

Ashley

I am making flash cards and the info is on excel. How do I insert a page
break between every row and column? I did it once but have no idea how is
happened.
Thanks
Ashley
 
With a macro like

Sub insertPageBreak()
For i = 2 To 10
ActiveSheet.Rows(i).PageBreak = xlPageBreakManual
ActiveSheet.Columns(i).PageBreak = xlPageBreakManual
Next
End Sub

Change 10 to whatever you want...
 
thanks for the reply! i am very new to excel and do not really understand
what u are saying, is it possible for u to put it in a simpler term
ash
 
Back
Top