QUOTIENT

QUOTIENT(numerator, denominator)

Returns the integer portion after division.

numeratorThe dividend.
denominatorThe divisor.

REMARKS
* If any of the arguments are not numeric, then #VALUE! is returned.
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=QUOTIENT(5, 2) = 2
2=QUOTIENT(4.5, 3.1) = 1
3=QUOTIENT(-10, 3) = -3
4=QUOTIENT(10, -3) = -3
5=QUOTIENT(-10, "some text") = #VALUE!


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top