I need a VLOOK-UP formula that uses two look-up vaiables in seper.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 2 columns - client and placement date on sheet 1 and on sheet two I
have 3 columns - client, placement date, and collections. I need a look-up
formula to look up the client and placement date on sheet 1 and insert to
collections from sheet 2 on sheet 2.
 
Hi Doug

assume your client & placement date data is in cells A1 and B1 respectively
on sheet1
on sheet 2, your data goes from A1:C100

a formula that you can use to return the collection information is
=INDEX(Sheet2!C1:C100,MATCH(A1&B1,Sheet2!A1:A100&Sheet2!B1:B100,0))
note, this is an array formula and needs to be entered using control & shift
& enter

note also, if you sheet2 sheet name has a space in it, you'll need to
enclose the sheet name in single quotes

Cheers
JulieD
 

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