Clearing Values of Variables

A

Anne

I have a procedure that calculates values of fields - I need to clear the
contents of the variables (currency and string data type). What is the best
way to do this? I have tried:

curCCCharge = null

I keep having problems with this ("invalid use of null")

Thanks in advance for your help.
 
K

Klatuu

For the currency type, you will need to use 0 and for the string use "" or
vbNullString
 
Top