VLOOKUP problem

G

GKW in GA

I have a .xls file in which column A and column B are formatted identically,
All entries that are in coumn B are in column A but there are entries in col
A that are not are in col B, i.e. col B is a subset of col A. For every entry
in column A that exists in col B, I want to place "found" in col C of the
same row as A. How can I do this with VLOOKUP
 
T

Tom Hutchins

In C1: =IF(ISERROR(VLOOKUP(B1,A:A,1,FALSE)),"","FOUND")
and copy down column C.

Hope this helps,

Hutch
 
D

Dave Peterson

=if(isnumber(match(a1,b:b,0)),"Found","not Found")

If you could live with True or false, you could use:

=isnumber(match(a1,b:b:,0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Numbers from first column 5
tiny discrepancies in fixed-point numbers 3
Vlookup 6
date range prroblem 1
League table 3
Sum 7
alternative formula for VLOOKUP since it stops with the 1st value itself 2
MAX IF 2

Top