View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Nested IF statement

You have too many unnecessay ( ).

=IF(C156="NJ",VLOOKUP($A156,Nigel!$A$10:$S$24,8,0) ,IF(C156="JAM",VLOOKUP($A156,Jam!$A$10:$S$24,8,0), ""))

--
Biff
Microsoft Excel MVP


"Mary Lou" wrote in message
...
I am trying to do a nested if statement with VLookup function. Here is an
example:

=IF(C156="NJ",(VLOOKUP($A156,Nigel!$A$10:$S$24,8,F ALSE))),IF(C156="JAM",(VLOOKUP($A156,JAM!$A$10:$S$ 24,8,FALSE)))

Not sure what i am doing wrong. the first statement works (Nigel). for
the
second one i get #VALUE

can someone help me? thanks