ROUNDDOWN
function ROUNDDOWN(arg1: number = null, arg2: number = null): number | string | boolean
Description
Rounds a number down, towards zero.
Parameters
- arg1
number
null Is any real number that you want rounded down.
- arg2
number
null Is the number of digits to which you want to round. Negative rounds to the left of the decimal point; zero or omitted, to the nearest integer.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.ROUNDDOWN(3.456, 0));