View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
dave_d[_4_] dave_d[_4_] is offline
external usenet poster
 
Posts: 1
Default Replacing cells that have 2-3 letters: Sorry for the vague question


I have done something similar by using Vlookup() , you could have
table with the short codes and their descriptions. Then insert
column in your data with a Vlookup formula that looks up the short cod
in your table, Make sure that you enter the last Parameter of th
Vlookup as 'FALSE' this will then lookup the long description for you
codes but will produce '#NA' for codes that do not appear in you
lookup table.

If You need to replace the '#NA' with your error message, an IF formul
could be used, something along the lines of =IF(ISNA(D5),"Not A Vali
Code!",D5)

Someone may well be along soon with a more elegant solution :

--
dave_
-----------------------------------------------------------------------
dave_d's Profile: http://www.excelforum.com/member.php...fo&userid=1460
View this thread: http://www.excelforum.com/showthread.php?threadid=26371