View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Which formula to use

Maybe something like this ..

In ABC, col A contains "1234A" somewhere

In SPF,
A1 contains the lookup value: 1234
Put in B1, array-enter, ie press CTRL+SHIFT+ENTER to confirm the formula:
=IF(A1="","",INDEX(ABC!A1:A10,MATCH(TRUE,ISNUMBER( SEARCH(A1,ABC!A1:A10)),0)))
Adapt the range to suit
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"yellow" wrote:
Hi

Aprreciate someone can help me.

I got this 2 worksheet, SPF and ABC. ABC is the master table.

For example: SPF, 1234 and some other inforamtion in the columns. ABC
(Master table & some other information in the columns) is 1234A (with a
alphabet). How to return the result 1234A to SPF worksheet.

I try using vlookup, match and the result is #N/A. I need to find the 1234A.

Thanks in advance.