✔ 最佳答案
there is no function in vb that allow you to round a number you have to do it manually here is an example:
Function SRound(Real As Double) As Integer
Dim temp As Integer
temp=Val(Real)
If Real - temp >=0.5 Then
SRound=temp+1
Else
SRound=temp
End If
End Function