Find and Replace/Substitute Formulas

K

Kathy123

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
 
P

Pete_UK

If you set up a table somewhere like this:

123 Bob
345 Jane
357 David

(suppose this is in X1:Y3), then you could use this formula in B1:

=IF(B1="","",VLOOKUP(A1,X$1:Y$3,2,0))

and then copy that down as required.

Hope this helps.

Pete
 
K

Kathy123

Thanks so much! This helps a lot.

Pete_UK said:
If you set up a table somewhere like this:

123 Bob
345 Jane
357 David

(suppose this is in X1:Y3), then you could use this formula in B1:

=IF(B1="","",VLOOKUP(A1,X$1:Y$3,2,0))

and then copy that down as required.

Hope this helps.

Pete
 
X

xlm

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,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top