Exporting data from excel with multiple worksheets into data table

I am trying to export data from excel spreadsheets containing multiple worksheets. I did not see any documentation on how this can be done. Does Aspose.Cells have methods defined to do this? I was able to obtain what I need from the first worksheet.
This message was posted using Aspose.Live 2 Forum

Hi,

Well, you may some options to export data from worksheets, e.g you can export data from worksheet to fill a datatable using Cells.ExportDataTable() method, you can also fill an array using Cells.ExportArray() method. See the document for your reference:
Export Data from Worksheet
Thank you.