View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default VLOOKUP WITH BLANK REFERENCE CELLS

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
---------------
Jacob Skaria


"Marysam67" wrote:

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.