Thread: Column Lookup?
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Luke M[_4_] Luke M[_4_] is offline
external usenet poster
 
Posts: 457
Default Column Lookup?

for pre-2007:
=SUMIF(Q3:Q502,"Yes",S3:S502)/COUNTIF(Q3:Q502,"Yes")

--
Best Regards,

Luke M
"Eduardo" wrote in message
...
Hi,

=AVERAGEIF($Q$3:$Q$502,"YES",$S$3:$S$502)

"Doug" wrote:

I have reference data in Column "$Q$3:$Q$502" of "sheet1". For all cells
in
the reference column that contain "yes", I would like to average quantity
in
cells for Column $S$3:$S$502 respectively.

So if it finds 3 in column Q with "Yes" (2,3,4) , it will return the
number 3.
--
Thank you!