WorksheetFunction.RoundDown Method
Rounds a number down, toward zero.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Function RoundDown ( _
Arg1 As Double, _
Arg2 As Double _
) As Double
'Usage
Dim instance As WorksheetFunction
Dim Arg1 As Double
Dim Arg2 As Double
Dim returnValue As Double
returnValue = instance.RoundDown(Arg1, _
Arg2)
double RoundDown(
double Arg1,
double Arg2
)
Parameters
Arg1
Type: System.DoubleNumber - any real number that you want rounded down.
Arg2
Type: System.DoubleNum_digits - the number of digits to which you want to round number.
Return Value
Type: System.Double
Remarks
RoundDown behaves like Round(Double, Double), except that it always rounds a number down.
If num_digits is greater than 0 (zero), then number is rounded down to the specified number of decimal places.
If num_digits is 0, then number is rounded down to the nearest integer.
If num_digits is less than 0, then number is rounded down to the left of the decimal point.