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.
Public Function RoundToQtr(RndNumber As Double)
Dim Cents As Double
Dim RndCents As Double
Cents = CInt(Right(CStr(RndNumber), 2)) / 100
If Cents >= 0 And Cents < 0.25 Then
RndCents = 0
ElseIf Cents >= 0.25 And Cents < 0.5 Then
RndCents = 0.25
ElseIf Cents >= 0.5 And Cents < 0.74 Then
RndCents = 0.5
Else
RndCents = 0.75
End If
RndNumber = (RndNumber - Cents) + RndCents
End Function