vlookup

P

Pammy

I have two worksheets: the main worksheet has all the employees with the
employee number in column A sorted ascending and years of service in col D.
The workbrain worksheet has employee numbers in A and my formula in G which
is:

vlookup(a2,main!a2:d1491,4)
the information is correct that is returned, but I have employees that is on
the workbrain sheet and not on the main, and it is pulling in 10.75 on these
10 cells. Is there a way to add to my formula that if it doesn't find that
emp # to bring in a 0?
 
M

Mike H

Pammy,

Try this

=IF(COUNTIF(Main!A2:A1491,A2)=0,"Lookup Not
Found",VLOOKUP(A2,Main!A2:D1491,4,FALSE))

or to return Null

=IF(COUNTIF(Main!A2:A1491,A2)=0,"",VLOOKUP(A2,Main!A2:D1491,4,FALSE))

Mike
 
A

Adams SC

Yes, change your formula as follows:

=IFERROR(VLOOKUP((a2,main!a2:d1491,4,FALSE),0)
 
T

T. Valko

vlookup(a2,main!a2:d1491,4)

Try using the 4th argument and setting it to either 0 or FALSE;

=VLOOKUP(A2,main!A$2:D$1491,4,0)

=VLOOKUP(A2,main!A$2:D$1491,4,FALSE)

Another possible method:

=SUMIF(main!A$2:A$1491,A2,main!D$2:D$1491)
 

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

Lookup on worksheet 1
lookup for latest data 8
Vlookup with a specific item 1
VLOOKUP matches 16
VLOOKUP TABLE ERROR 6
VLOOKUP just returns formula 1
sum of lookup values(vlookup) 3
Vlookup not working 6

Top