This function converts a value to an integer by rounding down, . Because the INT function always rounds down, INT (8.99) returns the integer 8, whereas INT(-9.8) gives the more negative value -10.
Syntax:
=INT (number)
Parameter list:
number – the number to generate an integer from.
Example :
For example, INT
(7.34) returns the number 7 and INT(-120.59) will give you more negative number -121 as INT
function will always round down.
Ask Your Query