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.
Function RoundUp(ByVal varNumber As Variant) As Variant
If IsNumeric(varNumber) Then
If varNumber = Int(varNumber) Then
RoundUp = Int(varNumber)
Else
RoundUp = Int(varNumber) + 1
End If
End If
End Function