clear page breaks

This commit is contained in:
Paul Trowbridge 2022-05-12 10:07:54 -04:00
parent e2315d3a16
commit ed4c795a40
1 changed files with 13 additions and 0 deletions

13
FL.bas
View File

@ -1646,3 +1646,16 @@ Sub pricegroup_upload_db2()
End Sub
Sub clear_page_breaks()
Dim b As Workbook
Dim s As Worksheet
For Each b In Workbooks
For Each s In b.Worksheets
If s.DisplayPageBreaks Then s.DisplayPageBreaks = False
Next s
Next b
End Sub