<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Trouble converting columns from character to numeric in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4850#M4850</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;this is my first post - I'm trying to automate data processing where I receive data in the form of excel spreadsheets... There's one tab in the workbook with all the relevant information.&lt;/P&gt;&lt;P&gt;JMP appears to import a lot of the data as character, not numeric, and I can convert the data to numeric manually in the table (usual way) but not with a script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set current directory("C:\JDSU\ServerCopy\Data\Post-processing characterization\Flash I-V\AWSC");&lt;/P&gt;&lt;P&gt;dt=open(); // this is the only way I've found to let me select the relevant worksheet "Sort Data" in the .xls file&lt;/P&gt;&lt;P&gt;tables = ntable();&lt;/P&gt;&lt;P&gt;OpenDTs = List();&lt;/P&gt;&lt;P&gt;savethis = list();&lt;/P&gt;&lt;P&gt;closethese = list();&lt;/P&gt;&lt;P&gt;show(dt);&lt;/P&gt;&lt;P&gt;/* THis loop I thought would work to eliminate the open tables which I don't want, but it only closes a few, not all, of the unwanted tables&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;=tables, i++,&lt;/P&gt;&lt;P&gt; Insert into( openDTs, Data Table(i)&amp;lt;&amp;lt;GetName());&lt;/P&gt;&lt;P&gt; IF(Data table(i)&amp;lt;&amp;lt;GetName() =="Sort data",&lt;/P&gt;&lt;P&gt;&amp;nbsp; Continue();&lt;/P&gt;&lt;P&gt;&amp;nbsp; close(DataTable(i));&lt;/P&gt;&lt;P&gt; );&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt;delete rows({1,2,3,4,5,6,7,8,9}); // the first nine rows are not data - is there a way to capture this in the open() command?&lt;/P&gt;&lt;P&gt;column (1)&amp;lt;&amp;lt;set name("Wafer ID");&lt;/P&gt;&lt;P&gt;column (2)&amp;lt;&amp;lt;set name("Xref-Yref");&lt;/P&gt;&lt;P&gt;column (3)&amp;lt;&amp;lt;set data type("numeric"); // this doesn't work....&lt;/P&gt;&lt;P&gt;//column ({3,4,5,6,7,8,9,10,11,12,13}) &amp;lt;&amp;lt;set data type(numeric); //nor does this&lt;/P&gt;&lt;P&gt;col = New COlumn("FF_Calc", numeric);&lt;/P&gt;&lt;P&gt;col&amp;lt;&amp;lt;set formula(:vmp *:imp /:Voc /:Isc); // this returns errors as I can't change the offending columns to numeric.&lt;/P&gt;&lt;P&gt;col = NEw COlumn ("xref", character);&lt;/P&gt;&lt;P&gt;col = new column ("yref", character);&lt;/P&gt;&lt;P&gt;column("voc")&amp;lt;&amp;lt;set data type("numeric"); //still doesn't work&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2012 15:51:30 GMT</pubDate>
    <dc:creator>tomt</dc:creator>
    <dc:date>2012-05-08T15:51:30Z</dc:date>
    <item>
      <title>Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4850#M4850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;this is my first post - I'm trying to automate data processing where I receive data in the form of excel spreadsheets... There's one tab in the workbook with all the relevant information.&lt;/P&gt;&lt;P&gt;JMP appears to import a lot of the data as character, not numeric, and I can convert the data to numeric manually in the table (usual way) but not with a script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Tom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set current directory("C:\JDSU\ServerCopy\Data\Post-processing characterization\Flash I-V\AWSC");&lt;/P&gt;&lt;P&gt;dt=open(); // this is the only way I've found to let me select the relevant worksheet "Sort Data" in the .xls file&lt;/P&gt;&lt;P&gt;tables = ntable();&lt;/P&gt;&lt;P&gt;OpenDTs = List();&lt;/P&gt;&lt;P&gt;savethis = list();&lt;/P&gt;&lt;P&gt;closethese = list();&lt;/P&gt;&lt;P&gt;show(dt);&lt;/P&gt;&lt;P&gt;/* THis loop I thought would work to eliminate the open tables which I don't want, but it only closes a few, not all, of the unwanted tables&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;=tables, i++,&lt;/P&gt;&lt;P&gt; Insert into( openDTs, Data Table(i)&amp;lt;&amp;lt;GetName());&lt;/P&gt;&lt;P&gt; IF(Data table(i)&amp;lt;&amp;lt;GetName() =="Sort data",&lt;/P&gt;&lt;P&gt;&amp;nbsp; Continue();&lt;/P&gt;&lt;P&gt;&amp;nbsp; close(DataTable(i));&lt;/P&gt;&lt;P&gt; );&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt;delete rows({1,2,3,4,5,6,7,8,9}); // the first nine rows are not data - is there a way to capture this in the open() command?&lt;/P&gt;&lt;P&gt;column (1)&amp;lt;&amp;lt;set name("Wafer ID");&lt;/P&gt;&lt;P&gt;column (2)&amp;lt;&amp;lt;set name("Xref-Yref");&lt;/P&gt;&lt;P&gt;column (3)&amp;lt;&amp;lt;set data type("numeric"); // this doesn't work....&lt;/P&gt;&lt;P&gt;//column ({3,4,5,6,7,8,9,10,11,12,13}) &amp;lt;&amp;lt;set data type(numeric); //nor does this&lt;/P&gt;&lt;P&gt;col = New COlumn("FF_Calc", numeric);&lt;/P&gt;&lt;P&gt;col&amp;lt;&amp;lt;set formula(:vmp *:imp /:Voc /:Isc); // this returns errors as I can't change the offending columns to numeric.&lt;/P&gt;&lt;P&gt;col = NEw COlumn ("xref", character);&lt;/P&gt;&lt;P&gt;col = new column ("yref", character);&lt;/P&gt;&lt;P&gt;column("voc")&amp;lt;&amp;lt;set data type("numeric"); //still doesn't work&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 15:51:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4850#M4850</guid>
      <dc:creator>tomt</dc:creator>
      <dc:date>2012-05-08T15:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4851#M4851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom, I think you want to repost this in the JMP forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Art&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 15:56:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4851#M4851</guid>
      <dc:creator />
      <dc:date>2012-05-08T15:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4852#M4852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An example of correct syntax to change a character column to numeric:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column("voc") &amp;lt;&amp;lt; Data Type( numeric );&lt;/P&gt;&lt;P&gt;column("voc") &amp;lt;&amp;lt; Modeling Type( continuous ); // if you want continuous modeling type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt:voc &amp;lt;&amp;lt; etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like your "if" statement needs a comma after "continue" ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2012 18:58:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4852#M4852</guid>
      <dc:creator>mpb</dc:creator>
      <dc:date>2012-05-08T18:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4853#M4853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea why a for each row() loop works fine if I run it by highlighting and then Ctrl+R in the JSL window, but it doesn't work when executing as part of the whole script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;col = New COlumn("FF_Calc", numeric) &amp;lt;&amp;lt; Modeling Type ( continuous );&lt;/P&gt;&lt;P&gt;col&amp;lt;&amp;lt;set formula(:vmp *:imp /:Voc /:Isc);&lt;/P&gt;&lt;P&gt;New Column("xref", Character, Ordinal, Formula(If(Right(Left(:Name("Xref-Yref"), 2), 1) == "-", Left(:Name("Xref-Yref"), 1), Left(:Name("Xref-Yref"), 2))), Set Property("Value Ordering", {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16"})); &lt;/P&gt;&lt;P&gt;New Column("yref", Character, Ordinal, Formula(If(Left(Right(:Name("Xref-Yref"), 2), 1) == "-", Right(:Name("Xref-Yref"), 1), Right(:Name("Xref-Yref"), 2))), Set Property("Value Ordering", {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16"}));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each row(&lt;/P&gt;&lt;P&gt; if(:FF_Calc &amp;lt; 0, rowstate() = excluded state(1), :FF_calc &amp;gt; 1, rowstate() = excluded state(1), rowstate() = excluded state(0) &lt;/P&gt;&lt;P&gt; );&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;for each row(&lt;/P&gt;&lt;P&gt; if(dt:FF_Calc &amp;lt; 0, rowstate() = excluded state(1), dt:FF_Calc &amp;gt; 1, rowstate() = excluded state(1), rowstate() = excluded state(0) &lt;/P&gt;&lt;P&gt; );&lt;/P&gt;&lt;P&gt;); // neither of these work in the script, but if executed manually they work fine.&amp;nbsp; Do I have to select the table or something like that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 13:26:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4853#M4853</guid>
      <dc:creator>tomt</dc:creator>
      <dc:date>2012-05-09T13:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4854#M4854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to "run" the column formulas before using them.&amp;nbsp; Put this line before the for each row statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; run formulas;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG&gt;dt&lt;/STRONG&gt; points to your data table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 13:50:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4854#M4854</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2012-05-09T13:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4855#M4855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bingo!&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.jmp.com/5.0.2/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 13:54:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4855#M4855</guid>
      <dc:creator>tomt</dc:creator>
      <dc:date>2012-05-09T13:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble converting columns from character to numeric</title>
      <link>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4856#M4856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How does it not work? Do you get an error message or just the wrong result? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, the column variable col is not properly assigned. You have to send the modeling type message either in a separate statement or within New Column(). Once assigned you can use col instead of :FF_Calc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;col &lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #2800e1;"&gt;New Column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #801392;"&gt;"FF_Calc"&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; numeric&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; continuous &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;col &lt;SPAN style="color: #160091;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; set values&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;}&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #2800e1;"&gt;For Each Row&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&amp;nbsp; &lt;SPAN style="color: #2800e1;"&gt;If&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #2800e1;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; col &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;Row State&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;()&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;Excluded State&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #2800e1;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; col &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;Row State&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;()&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;Excluded State&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #2800e1;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; &lt;/SPAN&gt;Row State&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;()&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;Excluded State&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&amp;nbsp; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #160091;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2012 13:56:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trouble-converting-columns-from-character-to-numeric/m-p/4856#M4856</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2012-05-09T13:56:38Z</dc:date>
    </item>
  </channel>
</rss>

