How to Fix Unexpected Decimals Like 61200.000000000007 When Importing from Excel

Problem

When importing an Excel file, some cells correctly show values like 61200, but in other cases, unexpected decimals appear — for example, 61200.000000000007 — even though the value in Excel looks like a clean integer.

Solution

This usually happens due to how the numbers are formatted and stored in Excel.

What’s causing it?

If your Excel cells use a custom format like:

#,##0_ ;[Red]-#,##0

Excel displays the number as an integer (with commas), but internally the value may still include tiny decimal fractions due to floating-point precision.

For example, Excel might display 61,200 but store the value as 61200.000000000007.
That tiny fraction doesn’t affect rounding, but it does show up when importing the data.

How to fix it

To import these numbers as integers and avoid the decimal noise, follow these steps:

  1. Click the column menu in the import preview.
  2. Select Integer as the data type.
  3. Click Apply.
  4. Proceed with the import.

This forces the column to treat all values as whole numbers.