Counting in columns

D

Deb

Hi all - I have a column which can include a date (eg format 10 June 2009)
and I want to be able to count the total number of times a date appears in
that column. I also have another column which includes the letter 'y' in
some cells. I also wish to count the total number of 'y's. Can anyone help.
As you can read I am so rubbish at that it is pitiful! Deb
 
J

Jacob Skaria

Hope the dates are formatted to excel date format. IF so

=COUNTIF(A:A,DATE(2009,6,10))
will give you the number of dates with 6th June 2009 in Column A

=COUNTIF(A:A,"Y")
will give you the number of Y's in Column A
 
D

Deb

Hi Jacob

The dates are all different. What I need to is to be able to know how many
cells have dates in.
 
A

Ashish Mathur

Hi

=count(range_of _dates) will count the number of cells which have dates and
numbers. Since you have not mentioned what else the column can hold, I
assuming that the cells are either blank or hold dates

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com
 
Y

ytayta555

 What I need to is to be able to know how many cells have dates in.

Maybe next (count and cells with text) :

=COUNTBLANK(A:A)
or : = 65536 - COUNTBLANK(A:A)
 

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