Simple number to text replacement

Xtra

New Member
Joined
Mar 14, 2011
Messages
3
Is there a simple way to replace a number with a text value? I have three levels based on a score. Can I do this without leaving the original cell? For example - Excellent =3, Good = 2, Poor = 1

Also, is there a reverse to this feature? Win = +1 Lose = -1
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Hello,

I'm not exactly sure if you want to enter a number and have it change, or just change the text to numbers in existing columns.

You could do a simple find & replace on the columns.

If it can go in a column next to your data, you could do IF formulas.

Will either of these options work for what you want?

Phil
 
Upvote 0
You can't have a value - like 3, 2, 1 - in a cell as well as a formula which converts it into a different value - excellent, good, poor.

For example, if you have 3, 2 or 1 in cell A1, this formula will return the excellent, good, poor equivalent:-
Code:
=CHOOSE(A1,"poor","good","excellent")

But you can't put the formula in A1 otherwise it will overwrite the numeric value upon which it's based.

Any good?
 
Upvote 0
You could sort of cheat your way there with this number format:

[=1]"Excellent";[=2]"Good";"Poor"

Note that anything not = to 1 or 2 would show as "Poor"... but, so long as {1,2,3} are your discrete possibilities, that would be OK.
 
Upvote 0
That is it! All good stuff. But the problem was it was not a formula I was seeking for that.
Thx!
 
Upvote 0

Forum statistics

Threads
1,224,517
Messages
6,179,240
Members
452,898
Latest member
Capolavoro009

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top