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”?
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.
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
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.