LookUp/Match/INDEXing Question

  • Thread starter Thread starter carl
  • Start date Start date
C

carl

My data looks like this:

Date Group BidEqual
20070904 1C 0.741
20070905 1C 0.787
20070904 3R 0.862
20070906 AE 0.957

I am trying to find a formula for ColC to complete this table...

Date Group BidEqual
20070904 1C 0.74
20070905 1C 0.78
20070906 3R "NotFound"
20070906 AE 0.957
20070908 B0 "NotFound"


Thank You in Advance
 
hi Carl

try:

=IF(SUMPRODUCT(--($B$7:$B$10=B13)*($C$7:$C$10=C13),(D7:D10))=0,"not
found",SUMPRODUCT(--($B$7:$B$10=B13)*($C$7:$C$10=C13),(D7:D10)))

assuming that the first data is on B7:d10 and the second on b13:d18

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"carl" escreveu:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top