i'm trying to read a number with length greater than 12 digits from excel file using c# using below query
"select Format([F1], 'Number') as Code";
But i get only 12 digits correctly and the rest of the numbers are converted into zeroes.Why is it so??
Example : 787767786546347
when read from excel file what i get is 787767786546000
According to MSDN:
http://support.microsoft.com/kb/269370