Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to look at the text in cell A1-Sheet1, find that text in column
1-sheet2, find the value in the corresponding row of column3-sheet2, then paste that value in A2-Sheet1. -- Thanks for your help in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way is to use VLOOKUP ..
Put in Sheet1's A2: =VLOOKUP(A1,Sheet2!A:C,3,0) Perhaps better (but longer) with some error traps included: =IF(A1="","",IF(ISNA(MATCH(A1,Sheet2!A:A,0)),"", VLOOKUP(A1,Sheet2!A:C,3,0))) -- Rgds Max xl 97 --- Singapore, GMT+8 xdemechanik http://savefile.com/projects/236895 -- "fdebelo" wrote in message ... I am trying to look at the text in cell A1-Sheet1, find that text in column 1-sheet2, find the value in the corresponding row of column3-sheet2, then paste that value in A2-Sheet1. -- Thanks for your help in advance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In Sheet1!A1:
=VLOOKUP(A1,Sheet2!A:C,3,FALSE) -- Kind regards, Niek Otten "fdebelo" wrote in message ... I am trying to look at the text in cell A1-Sheet1, find that text in column 1-sheet2, find the value in the corresponding row of column3-sheet2, then paste that value in A2-Sheet1. -- Thanks for your help in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to Improve Code Copying/Pasting Between Workbooks | Excel Discussion (Misc queries) | |||
Positioning Numeric Values Resulting from 6 Column Array Formula | Excel Worksheet Functions | |||
Lookup values in one column to return another | Excel Worksheet Functions | |||
Return Count for LAST NonBlank Cell in each Row | Excel Worksheet Functions | |||
lookup from one column return value from another? | Excel Discussion (Misc queries) |