Count word in two columns, one sheet

TXNCPO

New Member
Joined
Nov 1, 2011
Messages
34
Office Version
  1. 365
Platform
  1. Windows
Good Morning,

I am attempting to count the word GREEN, (i learned my lesson on colors a while back)

Seems a simple thing, guna feel dumb when this one comes back. Below are two of many attemps. (A5 is where the word GREEN is.


=COUNTIF((A$10:$A$72, $B$11:$B$57), "GREEN")


=COUNTIF((A$10:$A$72, $B$11:$B$57), A5)


Thank you.

R/ Joe
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
If you have to distinctly different ranges, then use a COUNTIF on each one and add them:
Code:
[COLOR=#333333]=COUNTIF(A$10:$A$72,"GREEN") + C[/COLOR][COLOR=#333333]OUNTIF([/COLOR][COLOR=#333333]$B$11:$B$57[/COLOR][COLOR=#333333],"GREEN") [/COLOR]
 
Upvote 0
Joe,

Thank you. Again. (tried with "and" earlier, don't know why + did not come to mind)

R/ Joe
 
Upvote 0

Forum statistics

Threads
1,226,730
Messages
6,192,705
Members
453,748
Latest member
akhtarf3

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