ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   ExportAsFixedFormat for Multiple Sheets in a Single Excel File (https://www.excelbanter.com/excel-programming/405994-exportasfixedformat-multiple-sheets-single-excel-file.html)

Ivanl

ExportAsFixedFormat for Multiple Sheets in a Single Excel File
 
It seems I can only save to PDF one sheet at a time, is it possible to print
multiple sheets in a single PDF document i.e. multiple page PDF?

Thanks.


Ron de Bruin

ExportAsFixedFormat for Multiple Sheets in a Single Excel File
 
You can create a new workbook with the sheets you want

ActiveWorkbook.Sheets(Array("Sheet1", "Sheet3")).Copy

Am the make a pdf of the workbook and delete the temp file

Sub RDB_PDF_ActiveWorkbook()
Dim FilenameStr As String

If Dir(Environ("commonprogramfiles") & "\Microsoft Shared\OFFICE" _
& Format(Val(Application.Version), "00") & "\EXP_PDF.DLL") < "" Then

FilenameStr = Application.DefaultFilePath & "\" & _
Format(Now, "dd-mmm-yy h-mm-ss") & ".pdf"

ActiveWorkbook.ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:=FilenameStr, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=False
MsgBox "You can find the PDF file here : " & FilenameStr

Else
MsgBox "PDF add-in Not Installed"
End If
End Sub




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ivanL" wrote in message ...
It seems I can only save to PDF one sheet at a time, is it possible to print
multiple sheets in a single PDF document i.e. multiple page PDF?

Thanks.


Wsg Dotnet

doubt in create pdf
 
The example you mentioned in VBA format. how can I use this in asp.net 2005?
Help me to solve this.

Thanks in advance


All times are GMT +1. The time now is 01:46 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com