Version

UltraCalcFunctionQuotient Class

Performs integer division on two numbers disregarding any remainder.
Syntax
'Declaration
 
Public Class UltraCalcFunctionQuotient 
   Inherits BuiltInFunctionBase
public class UltraCalcFunctionQuotient : BuiltInFunctionBase 
Remarks

QUOTIENT(numerator, denominator)

Numerator is a numeric value that will be divided by the denominator. It is sometimes called the dividend.

Denominator is the numeric value that divides the numerator. It is sometimes called the divisor. It cannot be zero or a #DIV/0 error value will be returned.

When either the numerator or the denominator is not a number, the QUOTIENT() function returns an error value (#VALUE!).

If you need the remainder from an integer division, use the MOD() function.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also