How do I count a named range for a specific word or acronym?

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

Guest

I am trying to count how many times the acronym "SD" shows up for all
worksheets in my file and on a specific row.
 
Hi!

One way:

Create a list of all the sheet names. Give this list a defined name,say,
List.

Then, to count instances of SD on every sheet in row 10:

=SUMPRODUCT(COUNTIF(INDIRECT("'"&List&"'!10:10"),"SD"))

Biff
 

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