S
S
Sergey Kiselyov2022-01-21 22:30:16
Google Sheets
Sergey Kiselyov, 2022-01-21 22:30:16

How to find two or more maximum values?

Tell me, how can I find in a range of cells, say, A1: Z1, two or more maximum numbers? Something like the MAX() function.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander, 2022-01-22
@sTantal

Let's say in the range A2:A11 you have numbers from zero to nine.
The formula =ArrayFormula(LARGE(A2:A11;{1;2;3}))will display the three largest values ​​in the column:

9
8
7

To display in one cell separated by commas:=ArrayFormula(JOIN(", ";LARGE(A2:A11;{1;2;3})))

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question