This function removes the fractional part of a number and return the resulting integer.
Fix(number)
Returns an integer.
If number is negative, Fix returns the first negative integer greater than or equal to number. For example, Fix converts –8.4 to –8.
Fix(number) is equivalent to the following line of code.
Sgn(number) * Int(Abs(number)Int)