I'm just stuck with this, what's the VB function that yields the "ceiling" of a number, i.e. the smallest integer greater of equal than the number?
For instance:
2.1 => 3
3 => 3
3.7 => 4
So it's complementary to the int function that produces the largest integer less or equal than the number.
If it doesn't exist, what would be a way to emulate it?
