Formula Help between 2 worksheets

2

2Fishie

I am trying to get a formula between two worksheets. Basically, if any value
in column A on worksheet 1 matches a value in column A of worksheet 2,
provide me the value shown in column B in worksheet 2. Any suggestions?
 
M

Max

Here's 2 ways to look it up - vlookup or index/match

In Sheet2,

Place in B2:
=IF(ISNA(MATCH(A2,Sheet1!A:A,0)),"",VLOOKUP(A2,Sheet1!A:B,2,0))
Copy down as far as required

Alternatively, you could use in B2:
=IF(ISNA(MATCH(A2,Sheet1!A:A,0)),"",INDEX(Sheet1!B:B,MATCH(A2,Sheet1!A:A,0)))
Copy down as far as required
 

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

Top