- What is the difference between QUOTIENT and ordinary division?
- QUOTIENT returns only the integer part, discarding any decimal remainder, while division (=A/B) returns the full decimal quotient. For example, QUOTIENT(7, 2) equals 3, but 7/2 equals 3.5.
- Does QUOTIENT round or truncate?
- QUOTIENT truncates toward zero—it drops the remainder without rounding. QUOTIENT(9, 2) returns 4 and QUOTIENT(−9, 2) returns −4. Use ROUND(A/B, 0) if you need rounding instead.
- Can QUOTIENT handle negative numbers?
- Yes, QUOTIENT works with negative numerators and denominators, truncating toward zero. QUOTIENT(−10, 3) returns −3 and QUOTIENT(10, −3) returns −3, following standard division sign rules.
- How do I capture the remainder after using QUOTIENT?
- Use MOD(numerator, denominator) for the remainder. Together they fully partition a number: QUOTIENT(10, 3) equals 3 and MOD(10, 3) equals 1, so 10 = 3×3 + 1.