Mode mult
MODE.MULT Function¶
The MODE.MULT function in Excel is used to find one or more modes (most frequently occurring values) in a dataset.
Unlike the MODE.SNGL function, which only returns a single mode even if multiple modes exist, MODE.MULT can return
all modes when the data is bimodal or multimodal.
Key Features of MODE.MULT:¶
- Supports Multimodal Data: Identifies and returns multiple modes when they exist.
- Works with numbers, ranges, or arrays.
- If no value repeats, the function returns an error (
#N/A).
Syntax:¶
- number1: Required. The first numeric value, cell reference, or range to evaluate.
- number2,...: Optional. Additional numeric values, cell references, or ranges (up to 255) to include in the dataset.
How It Works:¶
- The function evaluates the frequency of each number in the dataset.
- It identifies the values that occur most frequently.
- If there are multiple modes, it can return them as an array (when entered as an array formula).
Examples:¶
-
Basic Example:
Result:{2, 3}(both2and3occur most frequently). -
Using Cell Ranges: Suppose the cells A1:A6 contain
Result:{1, 2, 2, 3, 3, 4}:{2, 3}. -
Find Mode in a Single-Mode Dataset:
Result:{5}(only one mode exists:5). -
No Repeating Values:
Result:#N/A(no number repeats in the dataset). -
Array Output (Enter as Array): When using
Result:MODE.MULTto return multiple modes, you must select the range of cells where modes should appear, then enter the formula using Ctrl+Shift+Enter (in older versions of Excel):{2, 3}shown across two cells if the data inA1:A6is{1, 2, 2, 3, 3, 4}.
Notes:¶
-
Array Behavior:
- In Excel 365 or Excel 2021 (with dynamic arrays), the results "spill" into adjacent cells automatically without requiring array formula syntax (Ctrl+Shift+Enter).
- In older versions, you must use Ctrl+Shift+Enter to evaluate the function as an array formula.
-
Text and Logical Values:
- The function ignores non-numeric values (e.g., text or logical values) in the dataset.
Result:
{2, 3}.
- The function ignores non-numeric values (e.g., text or logical values) in the dataset.
Result:
-
Error Values:
- If an error exists in the dataset, the function returns that error.
Applications:¶
- Statistical Analysis: Identify the most common values in a dataset.
- Market Research: Analyze customer preferences or most frequently sold items.
- Quality Control: Detect common defects or issues in production lines.
Tip: For datasets with a single mode, you can use
MODE.SNGL. To return only the first mode in a multimodal dataset,MODE.SNGLcan also be used.