Excel to PowerPoint PasteSpecial and Keep Source Formatting

how to copy link excel data to pptx

@fuyuan,

Using Aspose.Cells, you can render an Excel spreadsheet to a PowerPoint presentation (e.g., PPTX). The source data with formatting will be retained in the conversion. To export an Excel file to PPTX, you simply need to open the Excel workbook into Aspose.Cells’ object model and then save it to PPTX. Please refer to the following sample (.NET) code for reference.
e.g.
Sample code:

// Open the template Excel file
Workbook workbook = new Workbook("Book1.xlsx");

// Save to PPTX format
workbook.Save("Book1.pptx", SaveFormat.Pptx);

Additionally, see the document on Excel to PPTX rendering for your complete reference.
https://docs.aspose.com/cells/net/convert-workbook-to-different-formats/#convert-excel-workbook-to-pptx

In case you need to accomplish something else, please let us know with the details and samples. We will check and assist you accordingly.