Export image and html to excel sheet

I am using Aspose library in .Net application

I want to export image and html data to Excell sheet using aspose..How can i achieve this.Please reply ASAP.

Hi Srikar,

Thanks for your inquiry. Unfortunately, there is no direct way to convert Word document to Excel. However, it is possible using Aspose.Words and Aspose.Cells. I have attached a simple converter for you (See the attached class). Here is how you should use it:

Document doc = new Document("C:\\Temp\\sample.html");
ConverterDoc2Xls converter = new ConverterDoc2Xls();
Workbook wb = converter.Convert(doc);
wb.Save("C:\\Temp\\out.xls");

You can also create a document from image and then use above mentioned code to convert document to Excel.

Best Regards,