Answers for "roundup vba custom formula"

0

roundup vba custom formula

' VBA Custom formula for round up
Function RoundUp(ByVal Value As Double) As Integer
    If Int(Value) = Value Then
        RoundUp = Value
    Else
        RoundUp = Int(Value) + 1
    End If
End Function
Posted by: Guest on June-03-2021

Browse Popular Code Answers by Language