I want to split a double into parts, without rounding.
Tried to use int
and fix
but they are giving strange results.
MsgBox Int(17.82 / 1.62) 'gives me 10 but
MsgBox 17.82 / 1.62 'gives me 11
I want results like 11 , but then how to use int
or fix
functions?