most frequently occurring text, breaking ties

lmleone

New Member
Joined
Jul 29, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hello, I am using the following formula to identify the most frequently occurring text in a column, however, I can't figure out how to adjust this equation to output a specific text string indicating there is a tie.

=INDEX(range, MODE(MATCH(range, range, 0 ))).

Example:

apple
pear
apple
pear

Using this formula ( =INDEX(A1:A4,MODE(MATCH(A1:A4,A1:A4,0))) ) I get the output of "apple", but there is no majority so I would like the output to display "N/A"

Thank you!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Book3
ABCD
1aa
2b
3a
4b
5b
6a
7a
8
Sheet1
Cell Formulas
RangeFormula
C1C1=LET(r, A1:A7, s,COUNTIF(r,r), mx, MAX(s), IF(SUM(--(s=mx))>mx,"#NA", INDEX(r,MATCH(mx,s,0))))
 
Upvote 0

Forum statistics

Threads
1,215,424
Messages
6,124,817
Members
449,190
Latest member
rscraig11

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top