CINT
Revision as of 05:46, 28 August 2009 by 72.95.147.221 (talk)
CINT function rounds decimal point numbers up or down to the nearest integer value. Values greater than .5 are rounded up; .5 or lower are rounded down just like "bankers rounding".
Useage: a% = CINT(DecimalNumber!)
Example: a% = CINT(1.51)
Results: a% = 2
Warning: Since CINT is used for integer values, the input values cannot exceed 32767!
See also: CLNG