Find matching value in another sheet

CharlieRog

New Member
Joined
Sep 13, 2019
Messages
14
I have a list of data split across 2 sheets. On sheet 1 I want to type in a value into column E and if the same value is present in Column E on sheet 2 then it copies cell value on the same line in column C and pastes it in column J on sheet 1.

Not sure if this is a lookup that's required?

THANKS IN ADVANCE!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
A simple formula solution would be something like:

=INDEX(Sheet2!$C$1:$C$20,MATCH($E3,Sheet2!$E$1:$E$20,0))

Just adjust the ranges & sheet names to match your data.

You might want to wrap it in a IFERROR() function if you don't want to see the N/A errors if the value is not found.

If you really want to copy & paste the values between the sheets you're going to need a macro.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top