Number.IntegerDivide
The function Number.IntegerDivide calculates the quotient of two numbers (number1 and number2) and returns only the whole number part. If either number1 or number2 is not specified, the result will be...
Number.IntegerDivide(number1 as nullable number, number2 as nullable number, optional precision as nullable number) as nullable number
The function Number.IntegerDivide calculates the quotient of two numbers (number1 and number2) and returns only the whole number part. If either number1 or number2 is not specified, the result will be null. The parameter number1 represents the dividend, while number2 represents the divisor.