Hi. I have some problems, when i try read excel file. Excel file contains date time column with values like this
last value is wrong as you see.
I use the next code:
{
DataTable table = sheet.ExportDataTable(0, 0, 3, 1, ExcelExportDataTableOptions.DetectColumnTypes);
}
After this code line I have argument exception. In stack trace i have this line "Syncfusion.XlsIO.Implementation.UtilityMethods.ConvertNumberToDateTime(Double dNumber)".
This seems like when DataTable fill 2403/2013 this value have wrong format maybe Out of DateTime values.
How i can take row and column where i have this exception?