You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Binding exported DataTable to data grid, likewise it can binded to any
2270
2270
//user interface control which supports binding
@@ -2283,7 +2283,7 @@ Using excelEngine As ExcelEngine = New ExcelEngine()
2283
2283
Dim sheet As IWorksheet = workbook.Worksheets(0)
2284
2284
2285
2285
'Read data from the worksheet and Export to the DataTable
2286
-
Dim customersTable As DataTable = sheet.ExportDataTable(sheet.UsedRange, ExcelExportDataTableOptions.ColumnNames)
2286
+
Dim customersTable As DataTable = sheet.ExportDataTable(sheet.UsedRange, ExcelExportDataTableOptions.ColumnNames Or ExcelExportDataTableOptions.ComputedFormulaValues)
2287
2287
2288
2288
'Binding exported DataTable to data grid, likewise it can binded to any
0 commit comments