Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am having page breaks occur leaving me with half a page of content and some
pages with full content. I am unable to force a manual page break to bring the content of the 2nd page back up to the 1st page. I thing this is occuring because the column content is long so the content will break from the previous row and go to the next page instead of the content filling out the 1st page then continuing on to the next page. How can I remove the page breaks to allow all pages to have full content? I am totally unable to do anything with the page break features to fix this problem. any assistance will be appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub ClearPBs()
' ' Suppress all pagebreaks With ActiveSheet Do While .HPageBreaks.Count 0 .HPageBreaks(1).Delete Loop Do While .VPageBreaks.Count 0 .VPageBreaks(1).Delete Loop End With End Sub HTH -- AP "Lisa" a écrit dans le message de ... I am having page breaks occur leaving me with half a page of content and some pages with full content. I am unable to force a manual page break to bring the content of the 2nd page back up to the 1st page. I thing this is occuring because the column content is long so the content will break from the previous row and go to the next page instead of the content filling out the 1st page then continuing on to the next page. How can I remove the page breaks to allow all pages to have full content? I am totally unable to do anything with the page break features to fix this problem. any assistance will be appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Manually, you can select all the cells (ctrl-a a few times)
then Insert|reset all page breaks. I recorded a macro when I did this and got this line: ActiveSheet.ResetAllPageBreaks Lisa wrote: I am having page breaks occur leaving me with half a page of content and some pages with full content. I am unable to force a manual page break to bring the content of the 2nd page back up to the 1st page. I thing this is occuring because the column content is long so the content will break from the previous row and go to the next page instead of the content filling out the 1st page then continuing on to the next page. How can I remove the page breaks to allow all pages to have full content? I am totally unable to do anything with the page break features to fix this problem. any assistance will be appreciated. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Page numbering problem | Excel Discussion (Misc queries) | |||
Page Numbers | Excel Discussion (Misc queries) | |||
Page Break | New Users to Excel | |||
Removing a page break from excel | Excel Worksheet Functions | |||
Excel page break preview | Excel Discussion (Misc queries) |