Remove Page Break Lines in Excel

Опубликовано: 25 Июль 2026
на канале: InIT Learning
33,014
174

How to remove those annoying dotted page break lines on an Excel Spreadsheet using one line of VBA code. Very easy to do for any level of user.

Sub PrintLines()
'
'Removes page break dotted lines
'Create in Personal Macro workbook
'PERSONAL.XLSB
'Place a link in Quick Access Tool Bar
'
'InITLearning.net
'
ActiveSheet.DisplayPageBreaks = False
End Sub