VLookUp

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

The following formula works ok, except when a cell in Col
C is empty the formula returns N/A (understandably).
How can I adjust the formula so that the cells in Col B
stay blank until a value is put in Col C.

=VLOOKUP($C2,FinalBudget!A2:B26,2,FALSE
Any help would be welcomed.
Regards
Bob
 
Bob

Enclose your formula in an IF function:
=IF($C2<>"",VLOOKUP($C2,FinalBudget!A2:B26,2,FALSE),"")

Andy.
 
Andy
that's great! Thanks very much.
Bob
-----Original Message-----
Bob

Enclose your formula in an IF function:
=IF($C2<>"",VLOOKUP($C2,FinalBudget!A2:B26,2,FALSE),"")

Andy.




.
 

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

Vlookup issue 2
Errors encountered when using If & Vlookup formulas 2
If( AND( with VLOOKUP.... 4
Sum Products with VLOOKUP 3
validation drop down list question 1
v look up 1
Help With VLOOKUP 2
vlookup backward 8

Back
Top