Save a selection of cells in Excel and save to PDF

Pam365

New Member
Joined
Apr 4, 2022
Messages
6
Office Version
  1. 365
Platform
  1. Windows
Urgent help please, Save a selection of cells in Excel and save to PDF.

I have an excel file in which I have a VBA to "Save Invoice Both Ways and Clear" The macro I have saves the whole worksheet as "xlsx and a PDF" file.
I really need this macro to save only the selected cell range "A1:N116" within this worksheet, and save both ways. I'm not very good at Macro's and needed help to get my existing macro working. It works perfectly now. Any help adjusting my existing macro to copy a range of cells instead of the whole "active Sheet" would be of so much help.
Here is my existing macro....

Sub SaveRangeBothWaysAndClear()
Dim NewFN As Variant
NewFN = "\\Z:\Company files\PDF Invoice copies\Doc" & Range("N5").Value & "" & Range("N10").Value & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=NewFN, _
Quality:=xlQualityStandard, IncludeDocProperties:=True, _
IgnorePrintAreas:=False, OpenAfterPublish:=False
ActiveSheet.Copy
NewFN = "\\Z:\Company files\Excel Invoice Copies 2022\Inv" & Range("N5").Value & "" & Range("N10").Value & ".xlsx"
ActiveWorkbook.SaveAs NewFN, FileFormat:=xlOpenXMLWorkbook
ActiveWorkbook.Close
Range("N5").Value = Range("N5").Value + 1

Range("B10:K10,A11:K14,A15:C15,F15:K15,N4,N10:N15,A17:N19,C22:N23,C25:M30,C34:M37,C40:M45,A73:N76,A79:M100").ClearContents

End Sub

Thanks to anyone who can help
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Simply use the ExportAsFixedFormat method of the Range object instead of the Worksheet object...

VBA Code:
Range("A1:N116").ExportAsFixedFormat . . .

Hope this helps!
 
Upvote 0
Simply use the ExportAsFixedFormat method of the Range object instead of the Worksheet object...

VBA Code:
Range("A1:N116").ExportAsFixedFormat . . .

Hope this helps!
Hi. I'm sorry I don't understand. Where would I enter your line of code and do I type exactly what you have or what do I enter instead of ...[/code] thank you
 
Upvote 0
If I understood you correctly, you only want to export to PDF the specified range, not the worksheet, correct? If so, replace...

VBA Code:
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=NewFN, _
    Quality:=xlQualityStandard, IncludeDocProperties:=True, _
    IgnorePrintAreas:=False, OpenAfterPublish:=False

with

VBA Code:
Range("A1:N116").ExportAsFixedFormat Type:=xlTypePDF, Filename:=NewFN, _
    Quality:=xlQualityStandard, IncludeDocProperties:=True, _
    IgnorePrintAreas:=False, OpenAfterPublish:=False

Does this help?
 
Upvote 0
Thank you I will give that a try as soon as I can. At work again on Thursday. I'll let you know if it works. Fingers crossed.
 
Upvote 0
Thank you I will give that a try as soon as I can. At work again on Thursday. I'll let you know if it works. Fingers crossed.
Hi Dominic
I've altered my VBA as you suggested and it works - thank you so much.
Could you also have a look at my file and help with saving the same range to a separate class file. It is also saving the whole worksheet at the moment.
Can't thank you enough - cheers Pam
 
Upvote 0
Hi Dominic
I've altered my VBA as you suggested and it works - thank you so much.
Could you also have a look at my file and help with saving the same range to a separate class file. It is also saving the whole worksheet at the moment.
Can't thank you enough - cheers Pam
Sorry for mis-spell. Trying to save as an excel xlsx file
 
Upvote 0
Try the following...

VBA Code:
Sub SaveRangeBothWaysAndClear()

    Dim sourceWorksheet As Worksheet
    Set sourceWorksheet = ActiveSheet
    
    Dim sourceRange As Range
    Set sourceRange = sourceWorksheet.Range("A1:N116")

    Dim pdfFilename As String
    With sourceWorksheet
        pdfFilename = "\\Z:\Company files\PDF Invoice copies\Doc" & .Range("N5").Value & .Range("N10").Value & ".pdf"
    End With
    
    sourceRange.ExportAsFixedFormat _
        Type:=xlTypePDF, _
        Filename:=pdfFilename, _
        Quality:=xlQualityStandard, _
        IncludeDocProperties:=True, _
        IgnorePrintAreas:=False, _
        OpenAfterPublish:=False
        
    Dim xlFilename As String
    With sourceWorksheet
        xlFilename = "\\Z:\Company files\Excel Invoice Copies 2022\Inv" & .Range("N5").Value & .Range("N10").Value & ".xlsx"
    End With
    
    Dim newWorkbook As Workbook
    Set newWorkbook = Application.Workbooks.Add(xlWBATWorksheet)
    
    sourceRange.Copy Destination:=newWorkbook.Worksheets(1).Range("A1")
    
    newWorkbook.SaveAs xlFilename, xlOpenXMLWorkbook
    
    newWorkbook.Close
    
    With sourceWorksheet
        .Range("N5").Value = .Range("N5").Value + 1
        .Range("B10:K10,A11:K14,A15:C15,F15:K15,N4,N10:N15,A17:N19,C22:N23,C25:M30,C34:M37,C40:M45,A73:N76,A79:M100").ClearContents
    End With

End Sub

Hope this helps!
 
Upvote 0
Try the following...

VBA Code:
Sub SaveRangeBothWaysAndClear()

    Dim sourceWorksheet As Worksheet
    Set sourceWorksheet = ActiveSheet
   
    Dim sourceRange As Range
    Set sourceRange = sourceWorksheet.Range("A1:N116")

    Dim pdfFilename As String
    With sourceWorksheet
        pdfFilename = "\\Z:\Company files\PDF Invoice copies\Doc" & .Range("N5").Value & .Range("N10").Value & ".pdf"
    End With
   
    sourceRange.ExportAsFixedFormat _
        Type:=xlTypePDF, _
        Filename:=pdfFilename, _
        Quality:=xlQualityStandard, _
        IncludeDocProperties:=True, _
        IgnorePrintAreas:=False, _
        OpenAfterPublish:=False
       
    Dim xlFilename As String
    With sourceWorksheet
        xlFilename = "\\Z:\Company files\Excel Invoice Copies 2022\Inv" & .Range("N5").Value & .Range("N10").Value & ".xlsx"
    End With
   
    Dim newWorkbook As Workbook
    Set newWorkbook = Application.Workbooks.Add(xlWBATWorksheet)
   
    sourceRange.Copy Destination:=newWorkbook.Worksheets(1).Range("A1")
   
    newWorkbook.SaveAs xlFilename, xlOpenXMLWorkbook
   
    newWorkbook.Close
   
    With sourceWorksheet
        .Range("N5").Value = .Range("N5").Value + 1
        .Range("B10:K10,A11:K14,A15:C15,F15:K15,N4,N10:N15,A17:N19,C22:N23,C25:M30,C34:M37,C40:M45,A73:N76,A79:M100").ClearContents
    End With

End Sub

Hope this helps!
Thanks again, I'll give it a try. It'll be next week before I can report back. Cheers
 
Upvote 0

Forum statistics

Threads
1,215,011
Messages
6,122,677
Members
449,092
Latest member
tayo4dgacorbanget

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top