Matching data from different tabs

RodneyW

Active Member
Joined
Sep 24, 2010
Messages
431
Office Version
  1. 2013
Platform
  1. Windows
My destination cells are column B, rows 2 through 40000 in a tab named CMM. In every row of column C on the same tab, I have an ID number which is used to reference content on another tab named ID's

I need a formula I can place in B2 (then drag down) on the CMM tab that will see the value in C2, look for the same value in C2:C125 on the IDs tab. When they match I want the value in column B from the ID's tab to populate B2 on the CMM tab. To explain a little further, lets say the value from C2 on the CMM tab is matched by the value in C17 from the IDs tab. When this happens, whatever the value in B17 is on the IDs tab, should populate B2 on the CMM tab.

Thank you in advance
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
How about
=Index('ID''s'!B$2:B$125,match(C2,'ID''s'!C$2:C$125,0))
 
Upvote 0
What is the exact name of the ID sheet? You have spelt it in two different ways.
 
Upvote 0
In that case use
=Index('IDs'!B$2:B$125,match(C2,'IDs'!C$2:C$125,0))
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

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