0

I have .xlsx file which we read from c# code where we have values like 12.1456 but when we read value from c# code we are getting round value as 12 / 13. Is we have any best way to read file value as it is.

Sachin
  • 75
  • 1
  • 3
  • 12

1 Answers1

1

Excel stores values as a double precision floating point numbers, so many times what you type in to Excel isn't precisely storable as a floating point.

Sachin Patil
  • 157
  • 6