Excel spread sheet

D

dlam25mmm

Every time I open ANY excel document on this CP it displays each individual
cell as a page.......how do I change this setting? Moving each page break
takes too long abd does not alway work.
 
F

Frank Kabel

Hi
try this macro to remove them all at once:
Sub remove_them()
ActiveSheet.ResetAllPageBreaks
End Sub
 
Top