Skip to main content

CEILING_MATH

Rounds a number up, to the nearest integer or to the nearest multiple of significance.

Syntax

expression.CEILING_MATH(arg1, arg2, arg3);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe value to round up.
arg2OptionalApiRange | ApiName | numberThe multiple of significance to round up to. If it is omitted, the default value of 1 is used.
arg3OptionalApiRange | ApiName | numberSpecifies if negative numbers are rounded towards or away from zero. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero.

Returns

number

Example

Round a number up, to the nearest integer or to the nearest multiple of significance in a spreadsheet.

// How to round a number up in a spreadsheet.

// Use function to round a number up the nearest integer or to the nearest multiple of significance in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.CEILING_MATH(-5.5, 2, 1));