It's true that the format function rounds the value before formatting.
Quote:
Originally Posted by ArturAs
Why does Format(0.567,"F0") return 1? I would expect 0
|
So what is the aim of your expected format? If you want only the value before the decimal point use
Int(0.567) => returns 0
Int(0.467) => returns 0
Int(1.000) => returns 1
specci48