INT(number)
=INT(3.25)
The function truncates any decimal portion of a number, rounding down to the lower integer. This example returns 3.
=INT(3.99)
The function truncates any decimal portion of a number, rounding down to the lower integer. This example returns 3.
=INT(3.01)
The function truncates any decimal portion of a number, rounding down to the lower integer. This example returns 3.
=INT(-3.1)
The function truncates any decimal portion of a number, rounding down to the lower integer. This example returns -4 because INT rounds down to the lower integer.
=INT(-3.99)
The function truncates any decimal portion of a number, rounding down to the lower integer. This example returns -4 because INT rounds down to the lower integer.
=INT(-3.01)
The function truncates any decimal portion of a number, rounding down to the lower integer. This example returns -4 because INT rounds down to the lower integer.
The INT function is used to round a real number down to the nearest integer. It takes a real number as its argument and returns an integer result.