Reputation: 3
I hope I am wording this correctly.
I need to calculate how many times a word appears in a column next to a number which can range from 1- 52. example (numbers in column B, words in column C)
1 Apples
1 Banana
1 Apples
2 Apples
2 Banana
2 Apples
2 Banana
Thank you
Upvotes: 0
Views: 72
Reputation: 1250
This should do it:
=COUNTIFS(B:B,1,C:C,"Apples")
Replace the 1
with your Number to search, and "Apples"
with your Word to search.
Creating a pivot table would also get you what you want:
Upvotes: 2