Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to create a spreadsheet where I enter a value (x) in a cell on
sheet 1. That value (x) then searches from sheet 2 (a range of values already entered in). Once it matches the value (x) on sheet 2, I need it to pull another cell value (y) on sheet 1 and enter it into a column on sheet 2 in the same row as value (x). Is there a formula that I can create to do this? Any help would be greatly appreciated. Thank you. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One versatile way is to use INDEX/MATCH ..
In Sheet2, assume the lookup col is col A (where all the x's reside) In Sheet1, assume lookup values (the various x's) are placed in A1 down put in B1: =INDEX(Sheet2!E:E,MATCH(A1,Sheet2!A:A,0)) copy B1 down to return corresp values from Sheet2's col E [that's the indexed part: INDEX(Sheet2!E:E, ... ] -- the y's that you want returned. modify to suit. -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Karen" wrote: I am trying to create a spreadsheet where I enter a value (x) in a cell on sheet 1. That value (x) then searches from sheet 2 (a range of values already entered in). Once it matches the value (x) on sheet 2, I need it to pull another cell value (y) on sheet 1 and enter it into a column on sheet 2 in the same row as value (x). Is there a formula that I can create to do this? Any help would be greatly appreciated. Thank you. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Oops, think I read it the other way round.
Just swap "Sheet1" to "Sheet2" in the earlier descript/formula. -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Connecting of two Data Validation with each other | Excel Discussion (Misc queries) | |||
Connecting of two data validating with each other | Excel Worksheet Functions | |||
Connecting Linked Spreadsheets | Excel Discussion (Misc queries) | |||
Connecting data in different pages and make calculations | Excel Worksheet Functions | |||
Equation connecting two data quantities | Charts and Charting in Excel |