View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
xlm xlm is offline
external usenet poster
 
Posts: 55
Default Find and Replace/Substitute Formulas

In case you did not set up a table, try this formula
assuming your data is in col A, place it in col B

=IF(A1=123,"bob",IF(A1=345,"Jane",IF(A1=357,"David ","not found")))

Hope this help

--
If this posting was helpful, please click on the Yes button

Thank You

cheers,









"Kathy123" wrote:

Hi - I am trying to have my spreadsheet either replace numbers with a
corresponding name, or, if it's easier, add a column with a name. That is, I
have the following data:

123
345
357

I want my spreadsheet to either:
1. Replace 123 with Bob, and replace 345 with Jane, and replace 357 with
David. The result would be
Bob
Jane
David

Or

2. Add in a column so that the result is -
123 Bob
345 Jane
357 David

Is there a way for me to do either of these"

Thanks