Saturday, August 13, 2016

How to use the CINT Function (VBA)

Description

The Microsoft Excel CINT function converts a value to an integer.

Syntax

The syntax for the CINT function in Microsoft Excel is:
CInt( expression )

Parameters or Arguments

expression
The value to convert to an integer.

Applies To

  • Excel 2016, Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000

Type of Function

  • VBA function (VBA)

Example (as VBA Function)

The CINT function can only be used in VBA code in Microsoft Excel.
Let's look at some Excel CINT function examples and explore how to use the CINT function in Excel VBA code:
Dim LValue As Integer

LValue = CInt(8.45)
In this example, the variable called LValue would now contain the value of 8.
Be careful using CINT. If you were to use the following code:
Dim LValue As Integer

LValue = CInt(8.5)
The variable LValue would still contain the value of 8. Until the fraction is greater than .5, the CINT function will not round the number up.
TIP:
  • If the fraction is less than or equal to .5, the result will round down.
  • If the fraction is greater than .5, the result will round up.
We've found it useful in the past to add 0.0001 to the value before applying the CINT function to simulate the regular rounding process.
For example, CInt(8.50001) will result in a value of 9.

No comments:

Post a Comment