Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Counting Specific Text in Excel 1

Status
Not open for further replies.

Cordury

Technical User
Jun 2, 2003
147
US
I ran a query and dumped it into Excel. One of the Columns is labeled "Remarks". I want to count all records/rows where a certain word appears in the "Remark Column". Since there is a couple of sentences in each cell, I can not use a straight If or countif formula.

Any ideas?

Thanks,
Cord
 
Hi,

The easiest way to get a quick answer is to use the AutoFilter and use Custom with the Contains operator and your string.

Then Select the entire column and right click the bottom right-hand Excel frame and select Count. You count will appear in that little panel.

:)

Skip,
Skip@TheOfficeExperts.com
 
You can use CountIf:
Code:
=COUNTIF(C2:C56,"*your word or phrase*")
Always remember wildcard characters.


Dan.
 
Thanks guys, I did not know about the wildcard *.

That is a hot little tip!

Thanks again!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top