I've got an excelsheet which is generated by a thirdparty which I need to read data from. One column is formated as percentage in the excelsheet and when I read data from the sheet I get eg. 27%. But If I open excel and click the cell, I can see that the actual value of the cell is 0,27673528. How can I get that value without opening the excelfile and modifying the column type?
I'm using the connectionstring:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Chr(34) & uploadFileName & Chr(34) & ";Extended Properties=" & Chr(34) & "Excel 8.0;HDR=NO;IMEX=1;" & Chr(34)