Dolphin.com.bd

Office Suite Tutorial => Microsoft Office Access => Topic started by: bbasujon on August 15, 2012, 05:20:13 PM

Title: Microsoft Access Function Library: Int()
Post by: bbasujon on August 15, 2012, 05:20:13 PM
Function: Int()

Purpose: The Int() function returns the integer portion of a given number.

Usage: Int(number)

Number is a double value or any other numeric expression.

Returns: The integer portion of the number specified in the argument.

Example

 Int(23.4) = 23
 Int(23.9) = 23
 Int(-23.4) = -24
 Int(-23.9) = -24
 Int(NULL) = NULL