View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ken Wright
 
Posts: n/a
Default sumproduct returns zero

You're very welcome :-)

Regards
Ken...........................

"vacation" wrote in message
...
Thank you so much! I have been working on this for months.

"Ken Wright" wrote:

Assuming your values in Col F are real numbers, take the quotes off the 0

=SUMPRODUCT((B2:B18="joe")*(F2:F180))

or

=SUMPRODUCT(--(B2:B18="joe"),--(F2:F180))

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

------------------------------*------------------------------*----------------
It's easier to beg forgiveness than ask permission :-)
------------------------------*------------------------------*----------------



"vacation" wrote in message
...
The following formula gives me a zero result :
=SUMPRODUCT((B2:B18="joe")*(F2:F18"0"))

I want to count all occurences of values$0.00 in Column F only if
column
B=Joe in a filtered list.

Thank you