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

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,216,076
Messages
6,128,669
Members
449,463
Latest member
Jojomen56

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