0

My Fourmula: =SUMPRODUCT(COUNTIFS(BRIDGE!H2:H500,">50",H2:H500,"<75" ))

Trying to count values greater than 50 but less than 75 on another sheet named "Bridge". The problem, this is just counting on the sheet the formula is on, not the referenced sheet. What am I doing wrong?

westman2222
  • 663
  • 1
  • 12
  • 30

1 Answers1

0

In your formula you do not refer to the "Bridge" tab on the second range of the CountIfS formula. It should be like this:

=SUMPRODUCT(COUNTIFS(BRIDGE!H2:H500,">50",BRIDGE!H2:H500,"<7‌​5" ))

Vityata
  • 42,633
  • 8
  • 55
  • 100