Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Vlookup & Find

I have a listing of good product numbers in Sheet 1 column A. I have
partial numbers and in some cases the complete product number in column
1 Sheet 2. I want to be able to retrieve, ie. find the match in column 1
sheet 1 given the fact that my product numbers may not be complete in my
second list Sheet 2 Column 1.


To explain the problem more clearly. I have a list of tool rental
equipment with their product ID's. They are of varying length. Some have
dashes slashes etc(eg. 28/2). I have the equipment which is used out in
the field and the product numbers in some cases have been worn off. I
might be missing the beginning end or middle of a number. I want to be
able to quickly match the partial number with my master list in Sheet 1.

Any help would be greatly appreciated as to how I might match up(best
efforts) Sheet2 Col 1 with Sheet 1(Master) Col. 1. There are literally
thousands of items and I'm going nuts trying to find the equipment in
the master List(Sheet 1)

Help

Regards

Ronald Cayne


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Vlookup & Find

=match(A1,Sheet1!$A:$A,0)
=Match("*"&A1&"*",Sheet1!$A:$A,0)
=Match("*"&Text(A1,"#")&"*",Sheet1!$A:$A,0)
=Match("*"&A1&"*",Text(Sheet1!$A:$A,"#",0)
Put these in B1, C1, D1 and E1 of sheet2
The last one must be entered with Ctrl+Shift+enter rather than just enter
since it is an array formla

in F1 put in a formula

=if(iserror(B1),"",Index(Sheet1!$A:$A,B1,0))
then drag fill this to the right to I1

Then select B1:I1 and drag fill down the column

this won't find duplicate possible matches, but it should give the "90%"
solution
--
Regards,
Tom Ogilvy


"Ronald Cayne" wrote in message
...
I have a listing of good product numbers in Sheet 1 column A. I have
partial numbers and in some cases the complete product number in column
1 Sheet 2. I want to be able to retrieve, ie. find the match in column 1
sheet 1 given the fact that my product numbers may not be complete in my
second list Sheet 2 Column 1.


To explain the problem more clearly. I have a list of tool rental
equipment with their product ID's. They are of varying length. Some have
dashes slashes etc(eg. 28/2). I have the equipment which is used out in
the field and the product numbers in some cases have been worn off. I
might be missing the beginning end or middle of a number. I want to be
able to quickly match the partial number with my master list in Sheet 1.

Any help would be greatly appreciated as to how I might match up(best
efforts) Sheet2 Col 1 with Sheet 1(Master) Col. 1. There are literally
thousands of items and I'm going nuts trying to find the equipment in
the master List(Sheet 1)

Help

Regards

Ronald Cayne




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VLOOKUP to Find the MIN (that is not zero) Huber57 Excel Discussion (Misc queries) 5 September 28th 09 06:19 PM
Vlookup to Find one value but exclude another JLatham Excel Discussion (Misc queries) 0 September 9th 09 01:19 PM
Vlookup to Find one value but exclude another MS-Exl-Learner Excel Discussion (Misc queries) 0 September 9th 09 10:56 AM
Can vlookup find the last row without it in the formula? zerOman Excel Discussion (Misc queries) 3 June 6th 06 02:49 AM
Vlookup & Find Caroline Excel Worksheet Functions 2 April 7th 06 03:13 PM


All times are GMT +1. The time now is 06:03 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"