Hi,
I use blow codes to export worksheet to a datatable & it work correctly.
now i apply some formatting to the worksheet.
How i can export worksheet to a datatable with these formatting
aDataTable = aWorksheet.Cells.ExportDataTable(0, 0,
aWorksheet.Cells.MaxRow + 1,
aWorksheet.Cells.MaxColumn + 1,
true);
aDataGrd.ItemsSource = aDataTable ;