Roundup Vba Custom Formula

[Solved] Roundup Vba Custom Formula | Basic - Code Explorer | yomemimo.com
Question : roundup vba custom formula

Answered by : zaka-ur-rehman-khan

' 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

Source : | Last Update : Thu, 10 Jun 21

Answers related to roundup vba custom formula

Code Explorer Popular Question For Basic