And, if you don't want to use a masked edit or format$() function, you can multiply the number by 100, assign it to a Long, assign it back to a Double, and then divide by 100.
[tt]
Dim lTemp as Long
lTemp = dPrice * 100
dPrice = lTemp \ 100
[/tt]
It may be faster in some instances, since the Format$() function isn't exactly a lightweight.
Chip H.