This function converts a number with a fractional portion to an integer.
Syntax:
=TRUNC(number, [num_digits])
Parameter list:
TRUNC vary solely when negative numbers are used; TRUNC(-24.54) returns -24, but INT(-24.54) returns -25 since -25 is the lower value.
TRUNC and INT are functions that are quite similar. TRUNC is a function that removes the decimal value of a number. Based on the value of the fractional component of the number, INT rounds numbers down to the closest integer.
Ask Your Query