I am trying to read data from Excel (xls) file via this connection string but some data's are missing under specific column.
Connection String is below;
props["Provider"] = "Microsoft.ACE.OLEDB.12.0;";
props["Extended Properties"] = "\"Excel 12.0;HDR=YES;IMEX=1;ImportMixedTypes=Text\"";
props["Data Source"] = path;
My Excel data's are like that, Missing Data's are under column "G" because of date value in the second row..
I tried everything under OleDB & mixed Excel datatypes : missing data but not worked..
Thx!