CInt Function

Converts any string or numeric expression to an integer.

Syntax:

CInt (Expression)

Return value:

Integer

Parameters:

Expression: A numeric expression that you want to convert. If the value of the Expression lies outside the range -32,768 to 32,767, LibreOffice Basic reports an overflow error. To convert a string expression, the number must be entered as normal text ("123.5") using the default number format of your operating system.

This function always rounds the fractional part of a number to the nearest integer.

Error codes:

5 Invalid procedure call

Example:

Sub ExampleCountryConvert

    MsgBox CDbl(1234.5678)

    MsgBox CInt(1234.5678)

    MsgBox CLng(1234.5678)

End Sub