Page Break Save

  • Thread starter Thread starter tc
  • Start date Start date
T

tc

Hi. Is it possible to save each page in the page break view in a new
workbook?
 
You could start with Ron de Bruin's macro:
http://www.rondebruin.nl/hpagebreaks.htm

If you really want a new workbook, then I think (untested) that you'll have to
make a change.

Change this section:

With Asheet.Parent
Set Nsheet = Worksheets.Add(after:=.Sheets(.Sheets.Count))
End With

to

Set Nsheet = workbooks.add(1).Worksheets(1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top