Round Down to the Nearest Integer in Excel With the INT Function

Close-Up Of Chart On Digital Display

 Chuanchai Pundej / Getty Images

When you need to round numbers in Microsoft Excel, use the INT function to round a number down to the next lowest integer and remove the decimal portion of a number. Unlike formatting options that alter the number of decimal places displayed without affecting the underlying data, the INT function alters the data in your worksheet. Using this function affects the results of calculations.

Instructions in this article apply to Excel 2019, 2016, 2013, 2010, and 2007, as well as Excel for Microsoft 365, Excel Online, Excel for Mac, Excel for iPad, Excel for iPhone, and Excel for Android.

INT Function Syntax and Arguments

A function's syntax refers to the layout of the function and includes the function's name, brackets, and arguments.

The syntax for the INT function is:

=INT(Number)

Number is the value to be rounded down. This argument can contain the actual data for rounding (see row 2 in the image below) or a cell reference to the location of the data in the worksheet (see row 3).

Screenshot of Excel showing INT, TRUNC, and MOD Functions

Enter the INT Function

The following example outlines the steps used to enter the INT function into cell B3 in the image below. To enter the function and its arguments, use one of these two methods:

  • Type the complete function, =INT(A3), into cell B3.
  • Select the function and its arguments using Excel's built-in formulas.
Screenshot of Excel showing INT Formula

Although it is possible to enter the complete function manually, it may be easier to use the dialog box as it takes care of entering the function's syntax. This way, you won't have to worry about making sure brackets and comma separators between arguments are placed properly.

To enter the INT function:

  1. Type 567.96 into cell A3 of a blank worksheet.

  2. Select cell B3 to make it the active cell. This is where the results of the INT function will display.

  3. Select the Formulas tab of the ribbon menu.

  4. Choose Math & Trig to open a drop-down list.

  5. Select INT in the list to open the Function Arguments dialog box. (On a Mac, the Formula Builder opens.)

  6. Place the cursor in the Number text box.

  7. Select cell A3 in the worksheet to enter that cell reference.

  8. Select OK when you're finished. (On a Mac, select Done to complete the function.)

INT vs. TRUNC Function

The INT function is very similar to another Excel rounding function, the TRUNC function. Both functions return integers as a result, but they achieve the result differently. While INT rounds numbers down to the nearest integer, TRUNC truncates, or removes, the decimal portion of data without rounding.

Screenshot of Excel showing TRUNC Function

The difference between the two functions is noticeable with negative numbers. For positive values, as shown in rows 3 and 4 above, both INT and TRUNC return a value of 567 when removing the decimal portion for the number 567.96 in cell A3.

In rows 5 and 6, however, the values returned by the two functions differ, -568 vs. -567, because rounding down negative values with INT means rounding away from zero, while the TRUNC function keeps the integer the same while removing the decimal portion of the number.

Return Decimal Values

To return the decimal or fractional portion of a number, rather than the integer portion, create a formula using INT as shown in cell B7. By subtracting the integer portion of the number from the whole number in cell A7, only the decimal 0.96 remains.

Screenshot of Excel showing MOD Function

An alternative formula can be created using the MOD function, as shown in row 8. The MOD function, short for modulus, normally returns on the remainder of a division operation. 

Setting the divisor to 1 (the divisor is the function's second argument) removes the integer portion of any number, leaving only the decimal portion as the remainder.

Was this page helpful?