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

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