What Formula?

  • Thread starter Thread starter dansargeant
  • Start date Start date
D

dansargeant

Hi,

This one has me stumped. This formula is non-functional but it may
help explain what I want to do. I need to Multiply rows of cells 6:11
by 60 if both cells in the B Column are not blank and adjacent cells
C6:C11 read "Local".

=SUMPRODUCT(--(=COUNTA(B6:B11)),--(E6:E11="Local"))*60

Thanks to anyone who can help.

Dan
 
This seems to work:

=SUMPRODUCT(--(B6:B11 <> ""),--(E6:E11="Local"),(B6:B11 * 60))

Note: I used your example formula for e6:e11 rather than your description
which said c6:c11.
 
Back
Top