I have an excel file which has 10 sheets. We can use below to export the entire excel file to one pdf file.
ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, outputPath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
Is it possible to export each sheet as a pdf file? So totally, I have 10 pdf files?
WorkSheet.SaveAs can save the sheet, but it does not export to pdf.
Thanks