How to Use the QUOTIENT Function in Google Sheets

The QUOTIENT function in Google Sheets falls under the Math category. It’s often confused with the DIVIDE function, as both are used to divide numeric values. So where does the difference lie? Let me explain.

QUOTIENT vs DIVIDE in Google Sheets

As the name suggests, the QUOTIENT function returns only the whole number part of a division — that is, the quotient without the remainder. On the other hand, the DIVIDE function returns the full result of the division, including any decimals.

Although I’ve already covered the DIVIDE function in a separate post, it makes sense to start this tutorial with a quick refresher, since it’s more commonly used.

Here’s a simple example using DIVIDE:

=DIVIDE(9, 2)

This will return 4.5, the same as:

=9/2

But if you’re only interested in the whole number part of the division, the QUOTIENT function in Google Sheets is your best bet.

QUOTIENT Function Syntax and Examples in Google Sheets

Syntax:

QUOTIENT(dividend, divisor)

Parameters:

  • dividend – The number you want to divide.
  • divisor – The number you want to divide by (cannot be 0).

Purpose:

The QUOTIENT function in Google Sheets returns the integer part of a division. It discards the remainder and decimal values.

Example:

=QUOTIENT(9, 2)

Output: 4 (Unlike 4.5 returned by =DIVIDE(9, 2))

If you’ve already used the DIVIDE function or / operator, and now want to mimic the QUOTIENT behavior, just use the INT function like this:

=INT(DIVIDE(9, 2))

or simply:

=INT(9/2)

👉 Recommendation:

Use TRUNC instead of INT if your formula may involve negative numbers and you want the behavior to fully match the QUOTIENT function in Google Sheets. While TRUNC removes the decimal portion by truncating toward zero, INT always rounds down toward negative infinity.

Is the QUOTIENT Function Array-Compatible?

Yes, the QUOTIENT function supports array operations. You can pass arrays or column ranges as input using ARRAYFORMULA. Here’s an example:

=ARRAYFORMULA(QUOTIENT(B2:B, C2:C))

This will return the quotient for each row in the corresponding columns.

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

Custom Order for QUERY Pivot Headers in Google Sheets

By default, when you use the PIVOT clause in a Google Sheets QUERY, the...

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

Mode of Comma-Separated Numbers in Excel (Dynamic Array)

There is no dedicated function in Excel to directly find the mode of comma-separated...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

More like this

Custom Order for QUERY Pivot Headers in Google Sheets

By default, when you use the PIVOT clause in a Google Sheets QUERY, the...

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.