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