[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

QUOTIENT

Syntax:

QUOTIENT ( dividend , divisor )

Description: Computes the integer portion of the division of dividend by divisor.

Arguments:

Name

Type

Description

dividend

number

The dividend

divisor

number

The divisor.

 

Return Type and Value: number – The integer portion of the division of dividend by divisor.

[Example:

QUOTIENT(5,2) results in 2
QUOTIENT(4.5,3.1) results in 1
QUOTIENT(-10,3) results in -3

end example]