What is the JavaScript Math.Floor() equivalent in VBA?. this function should remove all the decimal places and return only an integer.
Math.Floor()
Of what i remember use the Int() function. ex
int(2.99) = 2 ; int(2.1)=2
and so on.