Getting the max count of unique values

Natit

Board Regular
Joined
Jan 22, 2012
Messages
60
Office Version
  1. 365
Platform
  1. Windows
Hi there,
In column A I got all the unique values using =UNIQUE('data1'!A:A)
Then in column B I got the number of total appearance for each unique value using =COUNTIF('data1'!A:A,a2) that I dragged down
And then I got the highest result that I got in the countif formula using =MAX(b2:b100)
Is it a way to do it all in one formula?
TIA
Nati
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
like this ?

Excel Formula:
=LET(data,data1!A:A,MAX(COUNTIF(data,UNIQUE(data))))
 
Upvote 0
Excel Formula:
=MAX(COUNTIF('data1'!A:A,UNIQUE('data1'!A:A)))
 
Upvote 0
Solution

Forum statistics

Threads
1,225,156
Messages
6,183,229
Members
453,152
Latest member
ChrisMd

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