Save only one Excel sheet as pdf with "Save Excel File as pdf"

Hallo,

I started to use UI Path and I want to print one selected Excel sheet as a pdf. My web search unfortunately has not helped me, because the field to select the sheet is missing in the latest version I am using. Any idea how I only can print only 1 selected sheet with “Save Excel File as pdf”?

Thanks a lot in advance

@Mueller_Christoph

check the thread

Hi,

How about copy the workbook to other name then remove unnecessary sheets in it as the following?

Regards,

Hallo, a good idea to delete the not needed sheet, but I want to print diagrams. I think they will not work if I delete the sheets with the data before printing. Unfortunately, everything is connected and I even cannot select the page, because it changes depending on the amount of data in the tables.

Hi,

All right. Can you try the following? This hides unnecessary sheets instead of removing and it will work as you expect.

Using wb As New ClosedXML.Excel.XLWorkbook(filename)
Dim sheets As ClosedXML.Excel.IXLWorksheets = wb.Worksheets
wb.Worksheet(targetSheet).SetTabActive()
For Each  s  In sheets
If s.Name<>targetSheet Then
		s.Hide()
End If
Next
wb.Save()
End Using

Hallo,

thanks a lot for your proposal. However, I found an easier solution: Invoke VBA. The VBA code is a two line code:

  1. select sheet
  2. save as

(you can generate your code in excel very easy by using record a macro)

Read Range that sheet into a datatable. Write Range that sheet to a new Excel file so it only has that sheet. Then Save Excel File as PDF.

The Encodian API can convert a particular sheet to PDF.

Swagger UI (apps-encodian.com)

The support pages has documentation for the Encodian PowerAutomate connector but the pages will show you the options and how each action works:

Power Automate Action Documentation – Encodian Customer Help

The request object has an element or “worksheet” where you can specify the worksheet name. You can also choose not to export hidden sheets and choose various configurations.

{
“outputFilename”: “excel”,
“fileName”: “string”,
“fileContent”: “string”,
“outputFormat”: “PDF”,
“worksheet”: “string”,
“onePagePerSheet”: false,
“allColumnsInOnePagePerSheet”: true,
“removeDocumentMarkup”: true,
“exportHiddenSheets”: false,
“cultureName”: “string”,
“generateBookmarks”: true,
“pdfaCompliance”: true,
“pdfaComplianceLevel”: “PDF_A_1A”,
“tiffCompression”: “None”
}

Specifically:

Convert Excel – Encodian Customer Help