VLOOKUP WITH BLANK REFERENCE CELLS

M

Marysam67

I am using this formula. I am getting the correct results if the cell has
something in is. I am getting #N/A if the cell is blank. If the reference
cell is blank I would like the results to also be blank. Can you help me?

=IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member
List'!$A$4:$I$100,9,FALSE))

Thank you.
 
M

Marysam67

The exclamation mark is there. The formula I posted is different.

Luke M said:
Please reference earlier post of same title. (missing exclamation mark)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


Marysam67 said:
I am using this formula. I am getting the correct results if the cell has
something in is. I am getting #N/A if the cell is blank. If the reference
cell is blank I would like the results to also be blank. Can you help me?

=IF(A6="","",VLOOKUP(A6,'[Trust Accounts template.xls]Member
List'!$A$4:$I$100,9,FALSE))

Thank you.
 
N

Nikki

try this:

=IF(ISBLANK(A6),"",VLOOKUP(A6,'[Trust Accounts template.xls]Member
List'!$A$4:$I$100,9,FALSE))
 
J

Jacob Skaria

Try the below

=IF(ISNA(VLOOKUP(A6,'[Trust Accounts template.xls]Member
List'!$A$4:$I$100,9,FALSE)),"",VLOOKUP(A6,'[Trust Accounts
template.xls]Member List'!$A$4:$I$100,9,FALSE))

If this post helps click Yes
 

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

Top