VLOOKUP

  • Thread starter Thread starter CLAUDIA
  • Start date Start date
C

CLAUDIA

=IF(A3="",VLOOKUP(DATA,2,""))
I'm trying to pull information from a data source coulumn 2, but I keep
geting "false" can somebody tell me what I'm doing wrong! I haven't used for
long time and I totally forgot.

thanks
 
Hi Claudia

You are not saying what you want to look up.
If it is the value in A3, then the formula should be
=IF(A3="","",VLOOKUP(A3,DATA,2))

If it is something else that you wish to lookup, provided that A3 is Null
then
=IF(A3="",VLOOKUP(somethingelse,DATA,2),"")
 
And if the OP is looking for an exact match:

=IF(A3="","",VLOOKUP(A3,DATA,2,False))
 

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

Back
Top