View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Nikki Nikki is offline
external usenet poster
 
Posts: 184
Default VLOOKUP WITH BLANK REFERENCE CELLS

try this:

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

"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.