Getting the max count of unique values

Natit

Board Regular
Joined
Jan 22, 2012
Messages
58
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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
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
My sheet id Data1, what is "data"?
a variable which stores the values from data1!A:A
The advantage of using it is you only read the values once.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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