I want to get data from a column in excel sheet. In my case it's the 3rd one. I use a for loop in order to scan all the cells and I have the following column :
1,724.87
1,560.00
18,109.61
64.37
4,898.22
1,784.47
43,430.30
When I use the WorkSheet.Cells.Item($x,3).Text
function in the loop to get the content of each cell, I get the following :
1,724.87
1,560.00
#######
64.37
4,898.22
1,784.47
#######
The ####### can be seen in the .xls file when I open it in excel. When I expand the width of the column it shows the actual number again. So I assume that it reads it as it is. What can be done in order to get the actual number?