Access: CDbl Function
Question: How do I convert a value to a double?
Answer: To convert a value to a double, use the "CDbl" function. The syntax for the CDbl function is:
CDbl( expression )
For example:
Dim LDouble As Double
LDouble = CDbl(8.45 * 0.005 * 0.01)
The variable called LDouble would now contain the value of 0.0004225.