Click to See Complete Forum and Search --> : Not scientific format


vchapran
August 1st, 2001, 11:10 AM
I have a variable of double type. I would like to display its contents in regular format, let's say its value is presented by 20 digits, so I would like to display it (in message box, text box) as 12345678900987654321 rather than as 1.23456789001236E+18. How can I do that?
Thank you.
Vlad

Kdev
August 1st, 2001, 11:37 AM
If your variable is named dbl then:

Msgbox Format(dbl, "#")

-K

vchapran
August 1st, 2001, 12:41 PM
Thanks a lot.
Vlad