Count Data Within Range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,

I have a spreadsheet with aroung 12, 500 lines. The sheet contains info
about trainees and values recieved for training. I wanted to count the
number of times a specific word, located in column J appeared against each
trainee.

Trainees are identified by a unique code in column B. Any help would be
greatly appreciated.

Thanks
 
Where are you searching for the specific word? Assuming you are searching in
Col C thru I, put in Column K the foillowing:
=COUNTIF(C1:I1,J1)
and propagate to all cells in Column K.

Regards,
Antonio Elinon
 
=SUMPRODUCT(--(B1:B100="trainee_name"),--(J1:J100="word"))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
This will count the number of times ABC appears against code of 123.


HTH

=SUMPRODUCT(--(B2:B12500=123),--(J2:J12500="ABC"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top