View Single Post
  #2   Report Post  
Simon Shaw
 
Posts: n/a
Default

change the vlookup(A1,myTable,Column,range_lookup) to

vlookup(left(A1,find(" ",A1)-1),myTable,...)

assuming you have all cells as

"firstname lastname"

Simon

"jamesg-fid" wrote:

I have many vlookups referencing cell A1/2/3.....with the text: "firstname".
I now need to add to these cells: "last name".

If I add this text, the vlookups search other data tables for "firstname
lastname" and return errors. How can I amend the referenced cells
(A1/2/3...) so that the vlookups only use "firstname" and disregard the added
text ?

Tks