![]() |
How do I convert text answers to numeric
I want to convert some 'Yes/No' answers into numeric (i.e. Yes=1; No=0).
These will then be inputted into SPSS. How do you convert text to numeric in Excel? Thanks in advance |
If you want to convert them in place with no fuss, you can use a
macro to work off of a selection of cells. For a worksheet solution you can insert a new column (helper column) the worksheet below is not case sensitive =IF(A1="Yes",1,IF(A1="No",0, A1)) or a variation =IF(LEFT(A1,1)="Y",1,IF(LEFT(A1,1)="N",0, A1)) --- HTH, David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001] My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm Search Page: http://www.mvps.org/dmcritchie/excel/search.htm "Tonny" wrote in message ... I want to convert some 'Yes/No' answers into numeric (i.e. Yes=1; No=0). These will then be inputted into SPSS. How do you convert text to numeric in Excel? Thanks in advance |
On Thu, 29 Sep 2005 02:56:02 -0700, "Tonny"
wrote: I want to convert some 'Yes/No' answers into numeric (i.e. Yes=1; No=0). These will then be inputted into SPSS. How do you convert text to numeric in Excel? Thanks in advance For a formula: =--(A1="yes") will give a result of 1 for Yes and 2 for No. --ron |
One more...
Select the range to fix: edit|Replace what: Yes with: 1 replace all do the similar thing for No. Tonny wrote: I want to convert some 'Yes/No' answers into numeric (i.e. Yes=1; No=0). These will then be inputted into SPSS. How do you convert text to numeric in Excel? Thanks in advance -- Dave Peterson |
All times are GMT +1. The time now is 07:03 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com