<?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 Re: Question on JSL filling row blanks within a column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43589#M25221</link>
    <description>&lt;P&gt;The data table is being opened from a text file. I am not querying to get the data.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2017 14:39:50 GMT</pubDate>
    <dc:creator>Sully</dc:creator>
    <dc:date>2017-08-24T14:39:50Z</dc:date>
    <item>
      <title>Question on JSL filling row blanks within a column</title>
      <link>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43588#M25220</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I am relatively new to JSL. I have a character&amp;nbsp;column labeled State, within the column are the initals of the various US states. However, within this column there are blanks, I want to be able to created a JSL that will allow me to replace the blanks with the word "International". I have been looking all over and have been unable to find a&amp;nbsp;coding that would allow me to replace the blanks within&amp;nbsp;my State column with International.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any advice would be appreciated!!&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 14:38:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43588#M25220</guid>
      <dc:creator>Sully</dc:creator>
      <dc:date>2017-08-24T14:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Question on JSL filling row blanks within a column</title>
      <link>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43589#M25221</link>
      <description>&lt;P&gt;The data table is being opened from a text file. I am not querying to get the data.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 14:39:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43589#M25221</guid>
      <dc:creator>Sully</dc:creator>
      <dc:date>2017-08-24T14:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Question on JSL filling row blanks within a column</title>
      <link>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43590#M25222</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = New Table( "Untitled 24", Add Rows( 6 ),
	New Column( "State", Character, "Nominal",
		Set Values( {"PA", "DE", "NJ", "", "", "VA"} )
	)
);

blank_rows = dt &amp;lt;&amp;lt; get rows where(as column(dt, "State") == "");

if (nrows(blank_rows) &amp;gt; 0,
	column(dt, "State")[blank_rows] = "International";
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 24 Aug 2017 14:42:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43590#M25222</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-08-24T14:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Question on JSL filling row blanks within a column</title>
      <link>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43592#M25224</link>
      <description>&lt;P&gt;That worked perfectly! Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:03:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Question-on-JSL-filling-row-blanks-within-a-column/m-p/43592#M25224</guid>
      <dc:creator>Sully</dc:creator>
      <dc:date>2017-08-24T15:03:18Z</dc:date>
    </item>
  </channel>
</rss>

