Need help with lookup

D

Dan B

Hi,

I have four columns of data. Column B is a list of names. I need a formula
that will like for a specific name in column B and give me the data on the
rows in columns A, C and D where it finds that name. Kind of like
sub-totalling by name in column B, but I want to duplicate the data to
another section of the spreadsheet.

Thanks for any help,
Dan
 
D

Dave Peterson

=index('sheet2'!a:a,match(x99,'sheet2'!b:b,0))

Change x99 to the cell that contains the name.
Change 'Sheet2' to the name of the sheet with the table.
Change A:A to C:C and D:D for the other columns.
 
D

Dan B

Awesome, that worked.

Thanks a ton!

Dave Peterson said:
=index('sheet2'!a:a,match(x99,'sheet2'!b:b,0))

Change x99 to the cell that contains the name.
Change 'Sheet2' to the name of the sheet with the table.
Change A:A to C:C and D:D for the other columns.
 

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