IF Formula

  • Thread starter Thread starter Redroc
  • Start date Start date
R

Redroc

I'm needing a formula that will do the following...

If cell A1 is 1 it shows with the word Developing. If A1 is 2 it shows with
the word Performing. If A1 is 3 it shows with the word Leading.

Thanks
 
you could put this formula in b1

=CHOOSE(A1,"Developing","Performing","Leading")
 
=IF(A1=1,"DEVELOPING",IF(A1=2,"PERFORMING",IF(A1=3,"LEADING","")))
 

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

Similar Threads

Excel Need Countifs Formula Help 0
Scrabble Value calculation for Welsh words 0
Formula in B1 8
Combining Percent with Text 5
sum if 3
is Error help 3
Finding minum positive from the result of formula 8
Formula help please 9

Back
Top