count how many times a date appears

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

Guest

I have an excel worksheet with inspection dates in column c and reinspection
dates in column d. In columnn e I have the dates of the year. I want to
determine how many times each date appears in comumn c and d.
my final result will be a simple chart from this data.

Thanks in advance,
Fyrefox
 
For inspection dates, next to E1:

=COUNTIF(C:C,E1)

For total occurrences (inspection and reinspection):

=COUNTIF(C:D,E1)

HTH
Kostis Vezerides
 

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