<?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: How to distinguish whether there are empty values in a column? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854340#M102603</link>
    <description>&lt;P&gt;Check for 0 not for 1&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

dt &amp;lt;&amp;lt; New Column("Apple", "Character", "Nominal");
dt &amp;lt;&amp;lt; New Column("Orange", Numeric, Continuous);


Show(Col Number(Column(dt, "age")) == 0);
Show(Col Number(Column(dt, "Apple")) == 0);
Show(Col Number(Column(dt, "Orange")) == 0);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 25 Mar 2025 09:04:33 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-03-25T09:04:33Z</dc:date>
    <item>
      <title>How to distinguish whether there are empty values in a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854295#M102597</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I want to distinguish whether the cells in the column are empty using "is missing". In the JSL below, I hope to differentiate between the "name" and "Apple" fields, but the results are all 1. How should I modify it?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt; dtTest = Open( "$SAMPLE_DATA/Big Class.jmp" );
 show(IsMissing(:age));
 dtTest &amp;lt;&amp;lt; New Column( "Apple", "Character", "Nominal" );
 show(IsMissing(:Apple));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Mar 2025 08:31:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854295#M102597</guid>
      <dc:creator>BabyDoragon</dc:creator>
      <dc:date>2025-03-25T08:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to distinguish whether there are empty values in a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854305#M102598</link>
      <description>&lt;P&gt;Do you wish to check if all values are missing? You can for example use Col Number and check if it is 0&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

dt &amp;lt;&amp;lt; New Column("Apple", "Character", "Nominal");
dt &amp;lt;&amp;lt; New Column("Orange", Numeric, Continuous);


Show(Col Number(Column(dt, "age")) == 1);
Show(Col Number(Column(dt, "Apple")) == 1);
Show(Col Number(Column(dt, "Orange")) == 1);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Mar 2025 08:38:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854305#M102598</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-25T08:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to distinguish whether there are empty values in a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854334#M102599</link>
      <description>&lt;DIV data-container=""&gt;&lt;SPAN class="ThemeGrid_MarginGutter" data-expression=""&gt;I confirmed that all three results are displayed as 0, but in reality, the age field has a value. This makes it impossible to distinguish between the Apple and Orange fields.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 25 Mar 2025 08:54:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854334#M102599</guid>
      <dc:creator>BabyDoragon</dc:creator>
      <dc:date>2025-03-25T08:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to distinguish whether there are empty values in a column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854340#M102603</link>
      <description>&lt;P&gt;Check for 0 not for 1&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

dt &amp;lt;&amp;lt; New Column("Apple", "Character", "Nominal");
dt &amp;lt;&amp;lt; New Column("Orange", Numeric, Continuous);


Show(Col Number(Column(dt, "age")) == 0);
Show(Col Number(Column(dt, "Apple")) == 0);
Show(Col Number(Column(dt, "Orange")) == 0);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 Mar 2025 09:04:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-distinguish-whether-there-are-empty-values-in-a-column/m-p/854340#M102603</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-25T09:04:33Z</dc:date>
    </item>
  </channel>
</rss>

