Version: 1.0
The Int function converts a decimal number (floating-point) to
an integer number (fix-point).
There is one major difference between Int and Fix.
Int rounds negative numbers down. Fix rounds negative
numbers up.
<% =Int(123.456) %>
123
Positive numbers are not rounded up. The decimal point and all digits to the right are effectively chopped off.
<% =Int(123.899) %>
123
<% =Int(-123.456) %>
-124
Negative numbers are rounded down (towards more negative).