You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm reading a cell that has a value like 0.485. Because of the IEEE, I see 0.48500004. Which is understandable. I want to access the raw string value of the cell. Example code:
letmut excel:Xlsx<_> = open_workbook("test.xlsx").unwrap();let sheet = excel.worksheet_range("Sheet1").unwrap();for row in sheet.rows(){let first_cell:Data = row.iter().next().unwrap();// first_cell is f64. But I need to access raw string. So I can make my precision, or use rust_decimal}
The text was updated successfully, but these errors were encountered:
I'm reading a cell that has a value like
0.485
. Because of the IEEE, I see0.48500004
. Which is understandable. I want to access the raw string value of the cell. Example code:The text was updated successfully, but these errors were encountered: