Count word in two columns, one sheet

TXNCPO

New Member
Joined
Nov 1, 2011
Messages
32
Office Version
  1. 2016
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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
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
You are welcome.
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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