formula question

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

I have a column of 0's and 1's. I need a formula to change
the 1's to "yes" and the 0's to "no".

Thanks for your help.
Tim
 
Tim

If you don't want to actually change them, but change the way they are
displayed, you could use a custom format
Cells...>Number>Custom and type

"Yes";;"No";

Else you could use a formula in the next column

=IF(A1=1,"Yes","No")

and then Edit>Copy, Edit>Paste Special...>Values over the original data to
kill the formula

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
 

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

Back
Top