The Excel INT function rounds a number down to the nearest integer — always toward negative infinity, which trips people up with negative numbers.
Syntax
| Argument | Description | |
|---|---|---|
number | Required | The number you want to round down to the nearest integer. |
How to use it
INT always rounds down toward negative infinity — it does not simply chop off decimals:
For positive numbers INT and TRUNC give the same answer. For negatives they split: INT rounds down (so -5.1 → -6), while TRUNC just drops the decimals toward zero (so -5.1 → -5).
INT ≠ “drop the decimals.” For negatives INT goes the other way: =INT(-5.1) is -6, not -5. Use TRUNC if you want to truncate toward zero.
Try it: interactive demo
Pick a INT example to see the formula and its result.
Practice workbook
Frequently asked questions
What's the difference between INT and TRUNC?
-5.1 → -6) while TRUNC simply drops the decimals toward zero (-5.1 → -5).Does INT round or truncate?
Why does INT(-5.1) return -6?
=TRUNC(-5.1).How do I get just the decimal (fractional) part?
=A1-INT(A1). For mixed signs, =A1-TRUNC(A1) keeps the sign of the fraction consistent.Master functions like this in one day
This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class