0
I did but it returns an error, 'Couldn't find installable ISAM'. So, I retain my connection but I append the IMEX.
;Extended Properties='text;IMEX=1; HDR=Yes;FMT=Delimited(,)'
And still zeroes were vanished.
0
I believe you need to set the option in your connection string to force textual import rather than auto detecting it.
Provider=Microsoft.ACE.OLEDB.12.0;
Data Source=c:\path\to\myfile.xlsx;
Extended Properties=\"Excel 12.0 Xml;IMEX=1\";
The IMEX=1 extended property tells Excel to treat intermixed data as text.
0
But then, I am retrieving the ID from file using OleDB, and it turns out the the zeroes of the ID in the dataset was already ommitted.
0
Format the column in the Excel sheet where the IDs are stored as TEXT instead of numeric. If you are storing the values programmatically, put the value in a quote ''. Single quote is used as an escape character and it preserves all the values enclosed in quotes. This should solve your problem.