WorksheetFunction.ISO_Ceiling Method
Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Function ISO_Ceiling ( _
Arg1 As Double, _
Arg2 As Object _
) As Double
'Usage
Dim instance As WorksheetFunction
Dim Arg1 As Double
Dim Arg2 As Object
Dim returnValue As Double
returnValue = instance.ISO_Ceiling(Arg1, _
Arg2)
double ISO_Ceiling(
double Arg1,
Object Arg2
)
Parameters
Arg1
Type: System.DoubleNumber - The value to be rounded.
Arg2
Type: System.ObjectSignificance - The optional multiple to which number is to be rounded. If significance is omitted, its default value is 1.
Return Value
Type: System.Double