How do i count the number of text Entries of one word over a range

  • Follow


To explain here is an example of the columns i have:

THC will not Span 
Nox will not Span 
THC fails AVU
THC will not Span

I would like to be able to count how many times the phrase "THC" is 
mentioned over the course of hundreds of data entry columns?

With this example i would look to have the answer of 3.

Please can anyone help.

Thanks
0
Reply Utf 1/18/2010 9:13:01 AM

=COUNTIF(A:A,"*THC*")

-- 
Regards!
Stefi



„Chris Eaton” ezt írta:

> To explain here is an example of the columns i have:
> 
> THC will not Span 
> Nox will not Span 
> THC fails AVU
> THC will not Span
> 
> I would like to be able to count how many times the phrase "THC" is 
> mentioned over the course of hundreds of data entry columns?
> 
> With this example i would look to have the answer of 3.
> 
> Please can anyone help.
> 
> Thanks
0
Reply Utf 1/18/2010 9:21:01 AM


If you are looking for exact match THC (in caps) then try the below formula. 
Apply the formula using Ctrl+Shift+Enter instead of Enter

=COUNT(FIND("THC ",A1:A100))

-- 
Jacob


"Chris Eaton" wrote:

> To explain here is an example of the columns i have:
> 
> THC will not Span 
> Nox will not Span 
> THC fails AVU
> THC will not Span
> 
> I would like to be able to count how many times the phrase "THC" is 
> mentioned over the course of hundreds of data entry columns?
> 
> With this example i would look to have the answer of 3.
> 
> Please can anyone help.
> 
> Thanks
0
Reply Utf 1/18/2010 10:32:01 AM

2 Replies
508 Views

(page loaded in 0.312 seconds)

Similiar Articles:













8/1/2012 5:34:12 PM


Reply: