INT rounds a number down to the nearest whole number — always toward negative infinity, unlike TRUNC.
INT rounds a number down to the nearest whole number, dropping any decimal portion. For positive numbers this looks identical to ROUNDDOWN — the difference shows up with negatives.
INT always rounds toward negative infinity, so -4.3 becomes -5, not -4.
=INT(number)| Argument | Description |
|---|---|
| number required | The number to round down. |
=INT(8.9)Returns 8.
=INT(-8.9)Returns -9, not -8 — INT always moves toward negative infinity.
=INT(17.6/4)17.6 divided by 4 is 4.4 — INT gives you 4 whole groups.
They match for positive numbers but diverge for negative ones — INT(-8.9) is -9, TRUNC(-8.9) is -8.
ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.
Start practicing free →