Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
want to do this in a formular but dont know how:
if the text in sheet 1 cell c2 = the text in sheet 2 column d, then return text in sheet 2 column e associated with text in column d. I've tried using vlookup, it works with some of the sheets but not all of them. I have to continiously copy text between the two sheets for it to work. Please help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this formula somewhere on Sheet1, doesn't really matter where, except
that it cannot be in C2. =IF(ISNA(MATCH(C2,Sheet2!D:D,0)),"no match",OFFSET(Sheet2!D1,MATCH(C2,Sheet2!D:D,0)-1,1)) Remember there really isn't a line feed in the middle of that - it is one long formula to be entered. Hope this helps you. "Raj" wrote: want to do this in a formular but dont know how: if the text in sheet 1 cell c2 = the text in sheet 2 column d, then return text in sheet 2 column e associated with text in column d. I've tried using vlookup, it works with some of the sheets but not all of them. I have to continiously copy text between the two sheets for it to work. Please help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
But I should have added that what I posted is pretty much just a long way
around to simulate a VLOOKUP() function. This formula does the same thing: =VLOOKUP(C2,Sheet2!D:E,2,FALSE) "Raj" wrote: want to do this in a formular but dont know how: if the text in sheet 1 cell c2 = the text in sheet 2 column d, then return text in sheet 2 column e associated with text in column d. I've tried using vlookup, it works with some of the sheets but not all of them. I have to continiously copy text between the two sheets for it to work. Please help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can an If statement answer an If statement? | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions | |||
If statement | Excel Worksheet Functions | |||
If statement and Isblank statement | Excel Worksheet Functions | |||
Help please, IF statement/SUMIF statement | Excel Worksheet Functions |