Documentation

Ceiling
in package
Uses ArrayEnabled

Table of Contents

Properties

$arrayArgumentHelper  : ArrayArgumentHelper|null

Methods

ceiling()  : array<string|int, mixed>|float|string
CEILING.
math()  : array<string|int, mixed>|float|string
CEILING.MATH.
precise()  : array<string|int, mixed>|float|string
CEILING.PRECISE.
evaluateArrayArguments()  : array<string|int, mixed>
Handles array argument processing when the function accepts multiple arguments, and any of them can be an array argument.
evaluateArrayArgumentsIgnore()  : array<string|int, mixed>
Handles array argument processing when the function accepts multiple arguments, and any of them can be an array argument except for the one specified by ignore.
evaluateArrayArgumentsSubset()  : array<string|int, mixed>
Handles array argument processing when the function accepts multiple arguments, but only the first few (up to limit) can be an array arguments.
evaluateArrayArgumentsSubsetFrom()  : array<string|int, mixed>
Handles array argument processing when the function accepts multiple arguments, but only the last few (from start) can be an array arguments.
evaluateSingleArgumentArray()  : array<string|int, mixed>
Handles array argument processing when the function accepts a single argument that can be an array argument.
argumentsOk()  : float|string
Avoid Scrutinizer problems concerning complexity.
ceilingMathTest()  : bool
Let CEILINGMATH complexity pass Scrutinizer.
floorCheck1Arg()  : void
initialiseHelper()  : void
testFalse()  : bool

Properties

Methods

ceiling()

CEILING.

public static ceiling(array<string|int, mixed>|float $number[, array<string|int, mixed>|float $significance = null ]) : array<string|int, mixed>|float|string

Returns number rounded up, away from zero, to the nearest multiple of significance. For example, if you want to avoid using pennies in your prices and your product is priced at $4.42, use the formula =CEILING(4.42,0.05) to round prices up to the nearest nickel.

Excel Function: CEILING(number[,significance])

Parameters
$number : array<string|int, mixed>|float

the number you want the ceiling Or can be an array of values

$significance : array<string|int, mixed>|float = null

the multiple to which you want to round Or can be an array of values

Return values
array<string|int, mixed>|float|string

Rounded Number, or a string containing an error If an array of numbers is passed as an argument, then the returned result will also be an array with the same dimensions

math()

CEILING.MATH.

public static math(mixed $number[, mixed $significance = null ][, array<string|int, mixed>|int $mode = 0 ]) : array<string|int, mixed>|float|string

Round a number down to the nearest integer or to the nearest multiple of significance.

Excel Function: CEILING.MATH(number[,significance[,mode]])

Parameters
$number : mixed

Number to round Or can be an array of values

$significance : mixed = null

Significance Or can be an array of values

$mode : array<string|int, mixed>|int = 0

direction to round negative numbers Or can be an array of values

Return values
array<string|int, mixed>|float|string

Rounded Number, or a string containing an error If an array of numbers is passed as an argument, then the returned result will also be an array with the same dimensions

precise()

CEILING.PRECISE.

public static precise(mixed $number[, array<string|int, mixed>|float $significance = 1 ]) : array<string|int, mixed>|float|string

Rounds number up, away from zero, to the nearest multiple of significance.

Excel Function: CEILING.PRECISE(number[,significance])

Parameters
$number : mixed

the number you want to round Or can be an array of values

$significance : array<string|int, mixed>|float = 1

the multiple to which you want to round Or can be an array of values

Return values
array<string|int, mixed>|float|string

Rounded Number, or a string containing an error If an array of numbers is passed as an argument, then the returned result will also be an array with the same dimensions

evaluateArrayArguments()

Handles array argument processing when the function accepts multiple arguments, and any of them can be an array argument.

protected static evaluateArrayArguments(callable $method, mixed ...$arguments) : array<string|int, mixed>

Example use for: ROUND() or DATE().

Parameters
$method : callable
$arguments : mixed
Return values
array<string|int, mixed>

evaluateArrayArgumentsIgnore()

Handles array argument processing when the function accepts multiple arguments, and any of them can be an array argument except for the one specified by ignore.

protected static evaluateArrayArgumentsIgnore(callable $method, int $ignore, mixed ...$arguments) : array<string|int, mixed>

Example use for: HLOOKUP() and VLOOKUP(), where argument 1 is a matrix that needs to be treated as a database rather than as an array argument.

Parameters
$method : callable
$ignore : int
$arguments : mixed
Return values
array<string|int, mixed>

evaluateArrayArgumentsSubset()

Handles array argument processing when the function accepts multiple arguments, but only the first few (up to limit) can be an array arguments.

protected static evaluateArrayArgumentsSubset(callable $method, int $limit, mixed ...$arguments) : array<string|int, mixed>

Example use for: NETWORKDAYS() or CONCATENATE(), where the last argument is a matrix (or a series of values) that need to be treated as a such rather than as an array arguments.

Parameters
$method : callable
$limit : int
$arguments : mixed
Return values
array<string|int, mixed>

evaluateArrayArgumentsSubsetFrom()

Handles array argument processing when the function accepts multiple arguments, but only the last few (from start) can be an array arguments.

protected static evaluateArrayArgumentsSubsetFrom(callable $method, int $start, mixed ...$arguments) : array<string|int, mixed>

Example use for: Z.TEST() or INDEX(), where the first argument 1 is a matrix that needs to be treated as a dataset rather than as an array argument.

Parameters
$method : callable
$start : int
$arguments : mixed
Return values
array<string|int, mixed>

evaluateSingleArgumentArray()

Handles array argument processing when the function accepts a single argument that can be an array argument.

protected static evaluateSingleArgumentArray(callable $method, array<string|int, mixed> $values) : array<string|int, mixed>

Example use for: DAYOFMONTH() or FACT().

Parameters
$method : callable
$values : array<string|int, mixed>
Return values
array<string|int, mixed>

argumentsOk()

Avoid Scrutinizer problems concerning complexity.

private static argumentsOk(float $number, float $significance) : float|string
Parameters
$number : float
$significance : float
Return values
float|string

ceilingMathTest()

Let CEILINGMATH complexity pass Scrutinizer.

private static ceilingMathTest(float $significance, float $number, int $mode) : bool
Parameters
$significance : float
$number : float
$mode : int
Return values
bool

floorCheck1Arg()

private static floorCheck1Arg() : void

initialiseHelper()

private static initialiseHelper(array<string|int, mixed>|false $arguments) : void
Parameters
$arguments : array<string|int, mixed>|false

Can be changed to array for Php8.1+

testFalse()

private static testFalse(mixed $value) : bool
Parameters
$value : mixed
Return values
bool

        
On this page

Search results