formula to return cell values

jag108

Active Member
Joined
May 14, 2002
Messages
433
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
  2. MacOS
Hi Guys\Gals

I am trying to return a value from a cell on one sheet when a match is made, then return the value from the cell adacent from a different sheet.

Trying to use matchbut not getting the value returned that I am after.

Once agin as I feel this is difficult just to try and explain.

Col1|col2

Match the value col1 return the value in col2 to the calling sheet.

Using Excel 2010 on XP Pro SP 3
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi Guys\Gals

I am trying to return a value from a cell on one sheet when a match is made, then return the value from the cell adacent from a different sheet.

Trying to use matchbut not getting the value returned that I am after.

Once agin as I feel this is difficult just to try and explain.

Col1|col2

Match the value col1 return the value in col2 to the calling sheet.

Using Excel 2010 on XP Pro SP 3
Is this what you had in mind...

Book1
ABCDE
2AEast_LookupResult
3BSouth_FWest
4CNorth___
5DWest___
6ENorth___
7FWest___
8GEast___
9HWest___
10IEast___
11JNorth___
Sheet2

This formula entered in E3:

=INDEX(B2:B11,MATCH(D3,A2:A11,0))
 
Upvote 0
90% there, the data I am looking up is on a different sheet and not sorted.

This for hardware matching serial numbers to models.
 
Upvote 0
90% there, the data I am looking up is on a different sheet and not sorted.

This for hardware matching serial numbers to models.
It doesn't have to be sorted and just include the appropriate sheet name.

Data on Sheet2, criteria cell on some other sheet.

=INDEX(Sheet2!B2:B11,MATCH(D3,Sheet2!A2:A11,0))
 
Last edited:
Upvote 0
Nearly there, I can locate the value in the "stock" sheet, now I need to "return" the cell next to the matched value.
 
Upvote 0
Nearly there, I can locate the value in the "stock" sheet, now I need to "return" the cell next to the matched value.
How about telling us EXACTLY where the data is that you're looking for. Be VERY SPECIFIC.
 
Upvote 0
I knew this was going to be difficult from my side.

Serial numbers on "scan sheet", column B starting at row 4, scanned by hand scanner.

Values to match to "stock comparison" sheet, column B starting at row 1, value needed to be displayed in col 1 of the "scan sheet" is in col C on the "stock comparison" sheet.

This formaul is good, but I would like to return the value in column "C" of the "stock comparison" sheet
=INDEX('stock comparison'!B1:B12,MATCH(B4,'stock comparison'!B1:B12,0))

the above formula is on the "scan sheet" A4 and uses the value in "scan sheet" B4 to match on the 'stock comparison' sheet C1:C120.

I hope I have not confused the matter even further.

Thanks for putting up with me.
 
Upvote 0
I knew this was going to be difficult from my side.

Serial numbers on "scan sheet", column B starting at row 4, scanned by hand scanner.

Values to match to "stock comparison" sheet, column B starting at row 1, value needed to be displayed in col 1 of the "scan sheet" is in col C on the "stock comparison" sheet.

This formaul is good, but I would like to return the value in column "C" of the "stock comparison" sheet
=INDEX('stock comparison'!B1:B12,MATCH(B4,'stock comparison'!B1:B12,0))

the above formula is on the "scan sheet" A4 and uses the value in "scan sheet" B4 to match on the 'stock comparison' sheet C1:C120.

I hope I have not confused the matter even further.

Thanks for putting up with me.
OK, try this...

=INDEX('stock comparison'!C1:C12,MATCH(B4,'stock comparison'!B1:B12,0))
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,292
Members
452,902
Latest member
Knuddeluff

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