Moving data between tabs based upon criteria

Derrigan

New Member
Joined
Nov 12, 2018
Messages
9
Hi There,

Thank you in advance for your help!

I have a mass of data on a tab called "Detail". I have another tab (Summary) with a list of names. I need to pull information from the detail tab based upon the name in the "Summary" tab.

For example the information on each tab is:
Detail Tab: Full Name | Email Address | Telephone Number | Date of Birth
Summary: Full Name

I need the Summary tab to find the information from the data in tab "Detail" and pull it across, based upon the name in "Summary".

Derrigan
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try

=IF(A2="","",INDEX(Detail!B$2:B$10,MATCH(Summary!$A2,Detail!$A$2:$A$10,0)))

Drag this formula across and extend the ranges as needed to suit your data.

Assuming that you are using unique Full names, if by chance that you have two names the same the formula will collect the first occurrence.
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,729
Members
449,049
Latest member
MiguekHeka

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