diff options
Diffstat (limited to 'rows.go')
-rw-r--r-- | rows.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -378,7 +378,7 @@ func (c *xlsxC) getValueFrom(f *File, d *xlsxSST) (string, error) { return f.formattedValue(c.S, c.V), nil default: isNum, precision := isNumeric(c.V) - if isNum && precision > 15 { + if isNum && precision > 10 { val, _ := roundPrecision(c.V) if val != c.V { return f.formattedValue(c.S, val), nil |