Lookup returning value from antoher column in same row (Text!)

C

Cube Zombie

I am dealing with two worksheets in a large workbook. For the purposes of
public discussion, let's say:
Sheet One has a column listing all the characters on The Wire, and a column
that is blank or has a description of any beef that the row's character has
with Omar.
The second sheet has a list of all the characters who have died.
I want a formula in a new column on Sheet Two that will reference Sheet one
and pull the beef for each character.

The list of names on Sheet One is longer so the names are not in the same
order on both sheets. Also, the "Names" column is a different letter column
on each sheet.

This is not my workbook - I cannot use VBA, change settings, insert a pivot
table, or move things around. The only thing I can do for my piece is insert
a column on Sheet Two. (or cut and past from one to two everytime some
changes something!)

Example Sheet One
Column A......Column B
Frank Sobotka...[Is Blank]
Prop Joe...........Stole my shipment
D'Angelo...........Looked at me sideways

Example Sheet Two
Column D......Column K
Frank Sobotka...[Is Blank]
D'Angelo...........[Magical formula that I swear I knew at one time]

How can this be accomplished?
 
C

Cube Zombie

Thanks so much. I was certain this had been a fairly simple nested function
but was tearing my hair out trying to remember which two functions it took!

T. Valko said:
Try this:

=IF(VLOOKUP(D2,Sheet1!A:B,2,0)="","",VLOOKUP(D2,Sheet1!A:B,2,0))

--
Biff
Microsoft Excel MVP


Cube Zombie said:
I am dealing with two worksheets in a large workbook. For the purposes of
public discussion, let's say:
Sheet One has a column listing all the characters on The Wire, and a
column
that is blank or has a description of any beef that the row's character
has
with Omar.
The second sheet has a list of all the characters who have died.
I want a formula in a new column on Sheet Two that will reference Sheet
one
and pull the beef for each character.

The list of names on Sheet One is longer so the names are not in the same
order on both sheets. Also, the "Names" column is a different letter
column
on each sheet.

This is not my workbook - I cannot use VBA, change settings, insert a
pivot
table, or move things around. The only thing I can do for my piece is
insert
a column on Sheet Two. (or cut and past from one to two everytime some
changes something!)

Example Sheet One
Column A......Column B
Frank Sobotka...[Is Blank]
Prop Joe...........Stole my shipment
D'Angelo...........Looked at me sideways

Example Sheet Two
Column D......Column K
Frank Sobotka...[Is Blank]
D'Angelo...........[Magical formula that I swear I knew at one time]

How can this be accomplished?
 
T

T. Valko

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


Cube Zombie said:
Thanks so much. I was certain this had been a fairly simple nested
function
but was tearing my hair out trying to remember which two functions it
took!

T. Valko said:
Try this:

=IF(VLOOKUP(D2,Sheet1!A:B,2,0)="","",VLOOKUP(D2,Sheet1!A:B,2,0))

--
Biff
Microsoft Excel MVP


Cube Zombie said:
I am dealing with two worksheets in a large workbook. For the purposes
of
public discussion, let's say:
Sheet One has a column listing all the characters on The Wire, and a
column
that is blank or has a description of any beef that the row's character
has
with Omar.
The second sheet has a list of all the characters who have died.
I want a formula in a new column on Sheet Two that will reference Sheet
one
and pull the beef for each character.

The list of names on Sheet One is longer so the names are not in the
same
order on both sheets. Also, the "Names" column is a different letter
column
on each sheet.

This is not my workbook - I cannot use VBA, change settings, insert a
pivot
table, or move things around. The only thing I can do for my piece is
insert
a column on Sheet Two. (or cut and past from one to two everytime some
changes something!)

Example Sheet One
Column A......Column B
Frank Sobotka...[Is Blank]
Prop Joe...........Stole my shipment
D'Angelo...........Looked at me sideways

Example Sheet Two
Column D......Column K
Frank Sobotka...[Is Blank]
D'Angelo...........[Magical formula that I swear I knew at one time]

How can this be accomplished?
 

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