Thread: vlookup
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default vlookup

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)

--
Biff
Microsoft Excel MVP


"Pammy" wrote in message
...
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?