Lookup ...... I think?!?

WERNER SLABBERT

Board Regular
Joined
Mar 3, 2009
Messages
104
Heloo all

i need a quick solution to a very anoying problem......
i have i long sheet full of details as follows:
a1 = name
b1 = department
c1 = school qualifications
d1 = diplomas
e1 = certificates
f1 = further........ and so on....

with about 800 people in this sheet at any one time i don't have the
patients to sit and search how many times applicat X has studied accounting.

now my question..... is there a function... ( not vb code )
that i could put into g1 that will search that row for the word accounting and return the number of times it occurs there?

any and all help appreciated greatly.
thanx WJS :ROFLMAO:
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Perhaps this:
Code:
=COUNTIF(G2:G800,"*accounting*")

Change G2:G800 to the range you want to search.

Hope that helps...
 
Upvote 0
If you literally just want to search for the word "Accounting" then COUNTIF should do what you want, e.g.: =COUNTIF("A2:A100","*accounting*")

Dom
 
Upvote 0
If you literally just want to search for the word "Accounting" then COUNTIF should do what you want, e.g.: =COUNTIF("A2:A100","*accounting*")

Dom
ok so countif will do that but what do i add to the function to get it to return the number of times it appears in that row?
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,684
Members
448,977
Latest member
dbonilla0331

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