Count all rows in column with data, Except rows 1-5

G

Gregory Day

I would like to count all of the rows in Column A that contain any text,
except Rows 1 through 5. I have the following formula, which worked, but
included rows 1-5.

=COUNTIF(Clients!A:A,"*")

I then tried this, which didnt' work.

=COUNTIF(Clients!A3:A*,"*")

How can I make it counts all rows, below 5 with data in column A?
 
B

Bob Phillips

=COUNTIF(Clients!A:A,"*")-COUNTIF(Clients!A1:A5,"*")



--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
P

Pete_UK

You could do it this way:

=COUNTIF(Clients!A:A,"*") - COUNTIF(Clients!A1:A5,"*")

or like this:

=COUNTIF(Clients!A6:A65536,"*")

Hope this helps.

Pete
 

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

Top