PDA

View Full Version : Solved: Worksheet function help



austenr
12-01-2005, 11:46 AM
What I am looking for is a function (MATCH) to look at the entry in column B then
try to match that number by looking at all of the entries in column A. If a macth
is found, place that number next to the number in column B. If there is no match
the cell should be left blank or say no match. A sample spreadsheet is attached.

Thanks everyone.

Shazam
12-01-2005, 12:05 PM
Place this formula in C1 and copy it down.

=IF(ISERROR(VLOOKUP(B1,A$1:A$10,1,0)),"No Match",VLOOKUP(B1,A$1:A$10,1,0))

austenr
12-01-2005, 01:20 PM
thanks solved

Zack Barresse
12-08-2005, 10:34 AM
For other approaches, see here: http://www.mrexcel.com/board2/viewtopic.php?t=62102