Formula - Creating A Sublist from a master list

zjohnson

New Member
Joined
Mar 18, 2019
Messages
1
I have a master list of clients in a sheet (Client List)- the list is broken down into 3 columns - client code, client name, AT Member 1.

On a separate sheet, I am trying to create a formula that will auto-populate under the correct AT Members name.
ex: Client List! TSM Toyota of Southern Maryland Jason
and in the other sheet I have a section for Jason that I would want Toyota of Southern Maryland to auto-populate under.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Hello,

I think you are saying that your first sheet (Client List) looks like this:

Client CodeClient NameAT Member 1
TSMToyota of Southern MarylandJason

<tbody>
</tbody>

And you want your second sheet to look like this:

AT Members NameClient Name
JasonToyota of Southern Maryland

<tbody>
</tbody>


<table class="wysiwyg_dashes" verdana,="" arial,="" tahoma,="" calibri,="" geneva,="" sans-serif;"="" width=""><tbody></tbody></table>If that is the case then you can use an index match to get what you want. My formula assumes Jason is in cell A2 on your second sheet.

=INDEX(Sheet1!B:B,MATCH(A2,Sheet1!C:C,0),0)

This is only a good idea if there are not AT Member's with the same name. It is always best to use a unique ID to identify people.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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