Class Quotient

java.lang.Object
org.apache.poi.ss.formula.functions.Fixed2ArgFunction
org.apache.poi.ss.formula.functions.Quotient
All Implemented Interfaces:
FreeRefFunction, Function, Function2Arg

public class Quotient extends Fixed2ArgFunction implements FreeRefFunction

Implementation for Excel QUOTIENT () function.

Syntax:
QUOTIENT(Numerator,Denominator)

Numerator is the dividend. Denominator is the divisor. Returns the integer portion of a division. Use this function when you want to discard the remainder of a division.

If either enumerator/denominator is non numeric, QUOTIENT returns the #VALUE! error value. If denominator is equals to zero, QUOTIENT returns the #DIV/0! error value.

  • Field Details

  • Constructor Details

    • Quotient

      public Quotient()
  • Method Details