Frequency formula

srizki

Well-known Member
Joined
Jan 14, 2003
Messages
1,860
Office Version
  1. 365
Platform
  1. Windows
I have names in column A, and frequency in column B, some fames are repeated 10 times while most of them are only once. I have count if formula in column B, I need a formula that adds up the frequency only once. So if let’s say name UK appears 7 times, US 11 times and Pakistan 4 times, Sweden 4 times, it should add 7, 11, 4, and 4 not 7+7+7+7 etc.
Thanks,
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hey, assuming some sample data being in cells A1:A17 try this formula in B1 and drag down: (adjust accordingly)

=IF(MATCH(A1,$A$1:$A$17,FALSE)=ROW(),COUNTIF($A$1:$A$17,A1),"")

It will show the frequency only once (first appearance of the country name)
 
Upvote 0
I think your formula is correct, my data is from A to A62 and I am using your formula as below,
[TABLE="width: 64"]
<tbody>[TR]
[TD="class: xl63, width: 64"]=IF(MATCH(A2,$A$2:$A$62,FALSE)=ROW(),COUNTIF($A$2:$A$62,A2),"")
with array and without array but it gives me blank cells.

Thanks[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
I've just tested it and my formula doesn't like if the data is not starting from the top row, so try this amended formula instead:

In cell B2:
=IF(MATCH(A2,$A$2:$A$62,FALSE)=ROWS($A$2:A2),COUNTIF($A$2:$A$62,A2),"")

The issue with the initial formula was the =ROW() part as its starting on the 2nd row its looking for something that will never happen, the new formula provided should fix this :D

I should have spotted it first time around as most people do indeed have header rows :nya:
 
Last edited:
Upvote 0
Just another way

=IF(COUNTIF(A2:$A$62,A2) < COUNTIF($A$2:$A$62,A2),"",COUNTIF($A$2:$A$62,A2))<countif($a$2:$a$62,a2),"",countif($a$2:$a$62,a2))< html=""></countif($a$2:$a$62,a2),"",countif($a$2:$a$62,a2))<>
 
Last edited:
Upvote 0
Thank you very much DanteAmor.

This is easier than the other one, but both are working.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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