Multiple Numeric to Text

J

jamesjra

Hi,

I need to take a numeric value of a cell, (1,2,3), and then in a
seperate cell display the text 'Yes','no', 'N/A' respectively.

Any help would be much appreciated, seem to have hit a wall

J Calvert
 
P

Paul

jamesjra said:
Hi,

I need to take a numeric value of a cell, (1,2,3), and then in a
seperate cell display the text 'Yes','no', 'N/A' respectively.

Any help would be much appreciated, seem to have hit a wall

J Calvert

=IF(A1=1,"Yes",IF(A1=2,"no","N/A"))
Replace A1 with the cell you want to test.
 
G

Gord Dibben

=CHOOSE(A1,"good","ok","bad","very bad")

Will choose from 1,2,3 or 4 in A1

Adjust to suit.

Gord Dibben Excel MVP
 

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