CDec Function

Syntax

CDec(expr)

Group

Conversion

Description

Converts to a Decimal (96 bit scaled real).

Parameters Description
expr Converts a number or string value to a 96 bit scaled real.

Sub Main
    Debug.Print CDec("1E16")+0.1 ' 10000000000000000.1
End Sub