View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Rob-WNS Rob-WNS is offline
external usenet poster
 
Posts: 1
Default VLOOKUP or COUNT IF?

Many thanks guys.

It works a treat!!!

"vezerid" wrote:

Rob,

first of all, appending an A before a date does not make it a date. The
number 38949 IS a date, only not formatted as such. If cell A1 contains
Aug 8, 2006, then the formula:

=A1=38949

will return TRUE.

Conditional counting can be done with COUNT or with SUMPRODUCT.
Assuming your date is in K1 and rating (e.g. excellent) in K2, then

=SUMPRODUCT((Analysis!$A$3:$A$2000=$K$1)*(Analysis !$H$3:$H$2000=K2))

This will count how many records have the date and excellent.

What do you have in column Z? Does it affect counting conditions?

HTH
Kostis Vezerides



Rob-WNS wrote:
I am trying to sort through a survey of results.
each row starts with the date and the information is gathered in a pre set
values. i.e good, verygood etc.(Note there are several rows with the same
date)

I have tried V look up yet I need the search criteria of the look up to be
able to cope with the dates being the same.

Altenativly I used the COUNTIF option, yet I need to know how I can make the
"A38949" reference below. to change with the value I have in the results list.

(Note A38949 is the date with an A added so that Count IF function
recognised a date.)

=COUNT(IF((Analysis!$A$3:$A$2000="A38949")*(Analys is!$H$3:$H$2000="excellent=1"),Analysis!$Z$3:$Z$20 00))

I would then apply the formula to a list of dates I need to know the results
for.

Hope you can help.