CDec Function

Named Arguments

No

Syntax

CDec(expression)

expression

Use: Required

Data Type: Numeric or String

The range is +/–79,228,162,514,264,337,593,543,950,335 for numbers with no decimal places. For numbers with up to 28 decimal places, the range is +/–7.9228162514264337593543950335. The smallest possible nonzero number is 0.0000000000000000000000000001.

Return Value

expression cast as a Variant Decimal subtype.

Description

As there is no intrinsic Decimal data type in Visual Basic, CDec actually casts expression as a variant of subtype Decimal.

Rules at a Glance

  • If the value of expression is outside the range of the double data type, an overflow error is generated.

  • Expression must evaluate to a numeric value; otherwise a type-mismatch error is generated. To prevent this, it can be tested beforehand with the IsNumeric function.

Example

Dim decMyNumber
If IsNumeric(sMyNumber) then
    decMyNumber = CDec(sMyNumber)
End If

Programming Tips and Gotchas

  • Use the Decimal variant subtype for very large, very small, or very high precision numbers.

  • Use IsNumeric to test whether expression evaluates to a number.

  • When converting a string representation of a number to a numeric, you should use the data type conversion functions—such as CDec—instead of Val, because the data type conversion function takes account of the system's regional settings. In particular, the CDec function recognizes the thousands separator if it's encountered in the string representation of a number. For example, ...

Get VB & VBA in a Nutshell: The Language now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.