Public Sub Save_Sheet_Pages_As_PDFs()
Dim saveSheet As Worksheet
Dim lastRow As Long
Dim page As Long, nextPageStartRow As Long
Dim pageRange As Range
Dim savePDFsInFolder As String
Dim CompanyName As String
savePDFsInFolder = "C:\path\to\folder\" '<--------- CHANGE THIS
If Right(savePDFsInFolder, 1) <> "\" Then savePDFsInFolder = savePDFsInFolder & "\"
Application.ScreenUpdating = False
Set saveSheet = ActiveSheet
With saveSheet
.Activate
ActiveWindow.View = xlPageBreakPreview
lastRow = .UsedRange.Rows.Count
nextPageStartRow = 1
For page = 1 To .HPageBreaks.Count + 1
'Define the range of rows for this page
If page <= .HPageBreaks.Count Then
'This page ends with a page break, so the end row is the row number before the page break
Set pageRange = .Rows(nextPageStartRow & ":" & .HPageBreaks(page).Location.Row - 1)
nextPageStartRow = .HPageBreaks(page).Location.Row
Else
'The last page doesn't end with a page break, so the end row is the last row of the used range
Set pageRange = .Rows(nextPageStartRow & ":" & lastRow)
nextPageStartRow = lastRow + 1
End If
'Read the company name from this page's first row column A
'CompanyName = saveSheet.Cells(pageRange.Row, "A").Value 'Don't know which cell contains company name
CompanyName = "Page " & page
pageRange.ExportAsFixedFormat Type:=xlTypePDF, Filename:=savePDFsInFolder & CompanyName & ".pdf", _
Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
Next
ActiveWindow.View = xlNormalView
End With
Application.ScreenUpdating = True
MsgBox "PDF pages saved in " & savePDFsInFolder
End Sub
Application.ScreenUpdating
lines and add these 2 lines immediately before the ExportAsFixedFormat
line: Application.Goto .Cells(pageRange.Row + pageRange.Rows.Count - 1, 1)
MsgBox "Page: " & page & vbCrLf & "Rows: " & pageRange.Address, vbInformation
In that case the For ... Next loop is simpler and I've changed it in the macro below.Just gonna add another blank page and cancel publishing message.
As I said in my previous post, that's only to help investigate the issue with the last page, but since you haven't told me whether the row numbers it displays for the last page are correct or not, I don't know how the code should be changed to fix the issue.The new code is saving per page by clicking a pop up message.
OK, this new macro looks for the cell on each page containing the exact string "Employer ID No." and reads the company name from column A on the same row (that's where I think the company name is, according to your screenshots). If "Employer ID No." isn't found the macro saves the PDF for that page as "Page n", as before.Can you please add a code that renaming it per pdf page per company name?. This code is renaming it per page numbers.
Public Sub Save_Sheet_Pages_As_PDFs2()
Dim saveSheet As Worksheet
Dim lastRow As Long
Dim page As Long, nextPageStartRow As Long
Dim pageRange As Range
Dim savePDFsInFolder As String
Dim EmployerIDcell As Range
Dim CompanyName As String
savePDFsInFolder = "C:\path\to\folder\" '<--------- CHANGE THIS
If Right(savePDFsInFolder, 1) <> "\" Then savePDFsInFolder = savePDFsInFolder & "\"
Application.ScreenUpdating = False
Set saveSheet = ActiveSheet
With saveSheet
.Activate
ActiveWindow.View = xlPageBreakPreview
lastRow = .UsedRange.Rows.Count
nextPageStartRow = 1
For page = 1 To .HPageBreaks.Count
'Define the range of rows for this page
Set pageRange = .Rows(nextPageStartRow & ":" & .HPageBreaks(page).Location.Row - 1)
nextPageStartRow = .HPageBreaks(page).Location.Row
'Find the "Employer ID No." cell on this page
Set EmployerIDcell = pageRange.Find("Employer ID No.", After:=.Cells(pageRange.Row, 1))
If Not EmployerIDcell Is Nothing Then
'Cell found, so read the company name from column A on the same row
CompanyName = .Cells(EmployerIDcell.Row, "A").Value
Else
'Cell not found, so use "Page n" as the PDF name
CompanyName = "Page " & page
End If
pageRange.ExportAsFixedFormat Type:=xlTypePDF, Filename:=savePDFsInFolder & CompanyName & ".pdf", _
Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
Next
ActiveWindow.View = xlNormalView
End With
Application.ScreenUpdating = True
MsgBox "PDF pages saved in " & savePDFsInFolder
End Sub