Get Rid Of Page Breaks In All Spreadsheets
/What This VBA Code Does
Ever get those annoying dotted lines on all your spreadsheets after viewing a print preview? You can use this macro to get rid of them without having to manually go into the options and uncheck the box!
Sub DisablePageBreaks()
'PURPOSE: Disable Page Break Lines in Each Open Workbook
'SOURCE: www.TheSpreadsheetGuru.com
Dim WB As Workbook
Dim Sht As Worksheet
Application.ScreenUpdating = False
For Each WB In Application.Workbooks
For Each Sht In WB.Worksheets
Sht.DisplayPageBreaks = False
Next Sht
Next WB
Application.ScreenUpdating = True
End Sub
How Do I Modify This To Fit My Specific Needs?
Chances are this post did not give you the exact answer you were looking for. We all have different situations and it's impossible to account for every particular need one might have. That's why I want to share with you: My Guide to Getting the Solution to your Problems FAST! In this article, I explain the best strategies I have come up with over the years to getting quick answers to complex problems in Excel, PowerPoint, VBA, you name it!
I highly recommend that you check this guide out before asking me or anyone else in the comments section to solve your specific problem. I can guarantee 9 times out of 10, one of my strategies will get you the answer(s) you are needing faster than it will take me to get back to you with a possible solution. I try my best to help everyone out, but sometimes I don't have time to fit everyone's questions in (there never seem to be quite enough hours in the day!).
I wish you the best of luck and I hope this tutorial gets you heading in the right direction!
Chris "Macro" Newman :)