View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Dave is offline
external usenet poster
 
Posts: 1,388
Default Transferring data from column to another without VLOOKUP

Hi GP6,
You can still use the VLOOKUP function. You just have to include an error
trap.
For example:
IF(ISERROR(Your VLOOKUP formula),0,Your Lookup Formula)
This will result in 0 (zero) if the VLOOKUP wants to return an error.
If the VLOOKUP result is ok, then its result is displayed.
Regards - Dave