View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn Kevin Vaughn is offline
external usenet poster
 
Posts: 111
Default Adding multiple vlookups

It appears you have mismatched parenthesis. With your formula in b1,
=LEN(B1)-LEN(SUBSTITUTE(B1,"(","")) returns 16 and
=LEN(B1)-LEN(SUBSTITUTE(B1,")","")) returns 15. It looks like that missing
right parenthesis probably goes at the very end. I can't tell if there are
other errors, but this should get you started.
--
Kevin Vaughn


"John K" wrote:

I want to add 5 multiple vlookups together. Here's what I got:

=if(iserror(VLOOKUP(A2,ydt,2,false)),0,VLOOKUP(A2, ydt,2,false)+iserror(VLOOKUP(A2,wk1t,2,false)),0,V LOOKUP(A2,wk1t,2,false)+iserror(VLOOKUP(A2,wk2t,2, false)),0,VLOOKUP(A2,wk2t,2,false)+iserror(VLOOKUP (A2,wk3t,2,false)),0,VLOOKUP(A2,wk3t,2,false)+iser ror(Vlookup(a2,wk4t,2,false)),0,vlookup(a2,wk4t,2, false)

But I keep getting an error message and it looks at the 2nd ,0, in the
formula.