Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Math.Floor( 2.49999999999999 + 0.5 )
--> 2
Math.Floor( 2.5 + 0.5 )
--> 3
Private Function RoundMe(ByVal value As Decimal, ByVal places As Integer) As Decimal
RoundMe = Math.Floor((value * (10 ^ places)) + 0.5) / (10 ^ places)
End Function