Apologies, When sending the response I read the text in the question rather than the title...
vbakan - try
application.worksheetfunction.rounddown(myval1,0)
Try something like this, the key part is WorksheetFunction, its 'calling' the standard Round function.
Dim myVal1 As Long
Dim myval2 As Integer
myVal1 = 23.5555
myval2 = Application.WorksheetFunction.Round(myVal1, 0)
MsgBox myval2
Cheers
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.