Reputation: 120
When given multiple columns or rows, is there a formula that would return the most common value in the range? Example:
The formula would return Bird in the example above given columns A and B because Bird shows up 4 times, more than any other value.
Upvotes: 1
Views: 687
Reputation: 1
try:
=INDEX(QUERY({A:A; B:B},
"select Col1,count(Col1)
group by Col1
order by count(Col1) desc"), 2, 1)
Upvotes: 1