Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to lookup a text field, but although the field I am looking up against
contains the text in my lookup field, it is not exact so Vlookup is not returning the value, i.e. the field I am using to identify against contains first initial and surname and the sheet I am looking up contains full name. I have tried the True option, but it doesn't work properly for all of the entries. Is there another formula to use. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() in the formula bar type =vlookup( then click on the equals sign next to the formula bar, the function wizard shows, see what happens when you follow the wizard, by the way vlookup only works left to right, could that be the problem? -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=573429 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use the MATCH and INDEX functions to find a value. For
example, with the name to look up in cell B9, and the lookup table in cells B3:D6 -- =INDEX($C$3:$C$6,MATCH(LEFT(B9,1) & "*" & RIGHT(B9,LEN(B9)-2),$B$3:$B$6,0)) Janicej wrote: I want to lookup a text field, but although the field I am looking up against contains the text in my lookup field, it is not exact so Vlookup is not returning the value, i.e. the field I am using to identify against contains first initial and surname and the sheet I am looking up contains full name. I have tried the True option, but it doesn't work properly for all of the entries. Is there another formula to use. -- Debra Dalgleish Contextures http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return a text string when the result of VLOOKUP formula is #N/A | Excel Worksheet Functions | |||
text limit using a vlookup | Excel Discussion (Misc queries) | |||
VLOOKUP (with text) | Excel Discussion (Misc queries) | |||
How to get an exact mactch with Vlookup | Excel Worksheet Functions | |||
VLOOKUP first numerical value (not text) | Excel Worksheet Functions |