HomeGoogle DocsSpreadsheetHow to Use the Mode.Mult Function in Google Sheets

How to Use the Mode.Mult Function in Google Sheets

Published on

In this quick tutorial, I am going to elaborate on the use of the statistical function Mode.Mult in Google Sheets.

To find the model value in Google Sheets, you can use the function Mode. The model value is the most common number in a dataset.

That means there is already one function in Google Docs Sheets to find the model value in a dataset which is Mode. Then what is the role of the Mode.Mult?

In this post, I have detailed the role of Google Sheets Mode.Mult function and included some additional tips.

Mode.Mult Function Syntax and Formula Examples in Google Sheets

Syntax:

MODE.MULT(value1, value2)

Example:

=mode.mult(5,4,5,2)

The above formula would return the #5 as the model value (most frequently occurring number).

The below Mode formula would also return the same output!

=mode(5,4,5,2)

The difference between Mode and Mode.Mult lies in the latter’s capability in returning multiple modes.

Mode.Mult – The Multiple Mode Function

Assume you have a data set with multiple model numbers. Then the Mode function won’t come in handy. To return multiple modes, you must use the Mode.Mult function.

Mode.Mult Function in Google Sheets

Points to Note:

  1. When using this function you must leave enough blank cells below the formula applying cell. Otherwise, the formula would sometimes return #REF! error.
  2. The Mode.Mult function is an array formula function. So, unlike in Excel, no need to enter this formula as an array formula either by hitting the Ctrl+Shift+Enter shortcut or directly using the ArrayFormula function.
  3. The function returns #N/A error if there is no mode, that means if all the values in the dataset only occur once.

How to Check the Presence of Multiple Modes

I want to test a dataset whether it contains multiple model numbers. In this case, I can use the IF and Count function with the Mode.Mult function as below.

=if(count(mode.mult(B2:B9))>1,"Multiple Modes","")

With this example, I am winding up this tutorial. Thanks for the stay and hope you have enjoyed!

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Get the First or Last Row/Column in a New Google Sheets Table

If you've recently started using the new Google Sheets TABLE functionality, you may find...

UNIQUE Function in Visible Rows in Google Sheets

The UNIQUE function doesn't inherently include only visible rows when it returns values, discarding...

Customizing Alternating Colors of a Table in Google Sheets

Google Sheets' new table feature offers limited options for customizing colors. While you can...

Structured Table References in Formulas in Google Sheets

When you create a Google Sheets table by inserting custom tables or converting a...

More like this

Get the First or Last Row/Column in a New Google Sheets Table

If you've recently started using the new Google Sheets TABLE functionality, you may find...

UNIQUE Function in Visible Rows in Google Sheets

The UNIQUE function doesn't inherently include only visible rows when it returns values, discarding...

Customizing Alternating Colors of a Table in Google Sheets

Google Sheets' new table feature offers limited options for customizing colors. While you can...

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.