Matching two values

  • Thread starter Thread starter Anna Wood
  • Start date Start date
A

Anna Wood

Not quite sure how to write the formula to return value for D1 in new
worksheet. I need to match the values for both B1 and C1.

B C D
1 ABC Insurance $100
2 ABC Taxes $200
3 DEF Insurance $150
 
=SUMPRODUCT((Sheet1!B1:B3="ABC")*(Sheet1!C1:C3="Insurance")*Sheet1!D1:D3)

You can substitute the "text" for a cell that the criteria is entered into.
 
That did the trick - thank you!

Laura Cook said:
=SUMPRODUCT((Sheet1!B1:B3="ABC")*(Sheet1!C1:C3="Insurance")*Sheet1!D1:D3)

You can substitute the "text" for a cell that the criteria is entered into.
 
Back
Top