Referencing a specific cell.......

Doug12

New Member
Joined
Jun 29, 2008
Messages
3
I need to know if there is a way to reference a specific cell on a row based on a matched text string in a column.

This is a photo of where the reference needs to come from.

Fig.1
HTML:
"http://i5.photobucket.com/albums/y168/Tr0n1x/excel2.jpg"
This is a photo of where the result needs to be displayed.

Fig.2
HTML:
"http://i5.photobucket.com/albums/y168/Tr0n1x/excel1.jpg"
So what i want in cell B2 (Fig.2) is what matches A2 (Fig.2) In column B in the first photo but I want to display whats in Column A (Fig.1) in the same row that a match is found. Is there a formula that can do this?
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
This is unclear as we don't know what your sheets are called. Perhaps something like

=VLOOKUP("A3",'Sheet2':A1:J12,5,FALSE)
 
Upvote 0
The name of the first sheet is Test the second is Teacher.

Here is a picture of what should be displayed if the formula worked.
<img src="http://i5.photobucket.com/albums/y168/Tr0n1x/Excel3.jpg" border="0" alt="Photobucket">
 
Last edited:
Upvote 0
Some combination of index and match might be needed (since you are returning a value to the Left of the lookup column):

maybe:
=INDEX(Test!A1:A10,MATCH(A2,Test!B1:B10,0),1)

(where I've assumed 10 rows but your data is certainly more than 10)
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,537
Members
449,316
Latest member
sravya

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