Question : using VCOPY

I have attached a file that I am trying to do a VCOPY command on.  I have the table listed below on this document.  What I need is to be able to select from the Program column and then have the Account column automatically lookup the corresponding entry.  I am having some difficulty again.

Answer : using VCOPY

In your file:
  • Remove data validation in column E 
  • Enter in E8 =VLOOKUP(A8,MasterTable,5,FALSE) 
  • Copy down to get the rest of the stuff.
     
  • To avoid #N/A, use =IF(ISNA(VLOOKUP(A8,MasterTable,5,FALSE)),"",VLOOKUP(A8,MasterTable,5,FALSE)) in excel 2003, or in excel 2007 =IFERROR(VLOOKUP(A8,MasterTable,5,FALSE),"") 

Thomas
Random Solutions  
 
programming4us programming4us