'Conversion Functions to Truncate Fractions? Q. Does anyone know a function that would convert a currency-type number like 1.9833 or something to an integer by simply truncating the factional part: .9833? It seems the int, fix and such functions only round them to the closest number, but I want to keep just integer to the left of the decimal point, with no rounding. Q. Keywords: CInt, Int, Fix functions. CInt will round your number to an integer. Int and Fix will truncate the digits following the decimal point. The following is from the VB help file: Int and Fix return a value of the type passed to it containing the integer portion of a number. Both Int and Fix remove the fractional part of number and return the resulting integer value. The difference between Int and Fix is that if number is negative, Int returns the first negative integer less than or equal to number, whereas Fix returns the first negative integer greater than or equal to number. For example, Int converts -8.4 to -9, and Fix converts -8.4 to -8. Thanks to: Brad, Rich, Dennis