<?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: JSL: Color or Mark by Column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265328#M51688</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;is on the right track.&amp;nbsp; It seems that there is a problem with the syntax you are trying to use to reference the columns.&amp;nbsp; In the first line of code you shared, you have&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:"Date Info"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The column is created, but it has no values. Try the following and see if it works.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; New Column( "AM or PM", character, Formula( Word( 5, :Date Info ) ) );

dt &amp;lt;&amp;lt; Color or Mark by Column( :AM or PM, Marker Theme( "hollow" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 May 2020 19:06:26 GMT</pubDate>
    <dc:creator>Wendy_Murphrey</dc:creator>
    <dc:date>2020-05-08T19:06:26Z</dc:date>
    <item>
      <title>JSL: Color or Mark by Column</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/262409#M51348</link>
      <description>&lt;P&gt;I'm trying to color and mark by a specific column that was created using the "Word()" function. For some reason, the "Color or Mark by Column" function doesn't work with the (word) formula created column.&lt;/P&gt;
&lt;P&gt;It works fine for any other columns that were originally in the table. Is there a line of code I can add or modify to get this working?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Column( "AM or PM", character, Formula( Word( 5, :"Date Info" ) ) );
dt &amp;lt;&amp;lt; color or mark by column( "AM or PM", marker theme( hollow ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:14:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/262409#M51348</guid>
      <dc:creator>ERoderz</dc:creator>
      <dc:date>2023-06-10T23:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Color or Mark by Column</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/262465#M51353</link>
      <description>&lt;P&gt;Your reference to AM or PM in the color or mark by column, needs to be referenced with either&lt;BR /&gt;:AM or PM&lt;BR /&gt;or&lt;BR /&gt;Column("AM or PM")&lt;BR /&gt;or&lt;BR /&gt;:Name("AM or PM")&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 22:21:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/262465#M51353</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-04-29T22:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Color or Mark by Column</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265273#M51680</link>
      <description>&lt;P&gt;That still doesn't seem to be working. I can get other columns (not created by the "Word" formula) to be colored or marked just fine... Why not this one?! &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 17:07:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265273#M51680</guid>
      <dc:creator>ERoderz</dc:creator>
      <dc:date>2020-05-08T17:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Color or Mark by Column</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265328#M51688</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;is on the right track.&amp;nbsp; It seems that there is a problem with the syntax you are trying to use to reference the columns.&amp;nbsp; In the first line of code you shared, you have&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:"Date Info"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The column is created, but it has no values. Try the following and see if it works.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; New Column( "AM or PM", character, Formula( Word( 5, :Date Info ) ) );

dt &amp;lt;&amp;lt; Color or Mark by Column( :AM or PM, Marker Theme( "hollow" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 19:06:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265328#M51688</guid>
      <dc:creator>Wendy_Murphrey</dc:creator>
      <dc:date>2020-05-08T19:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Color or Mark by Column</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265360#M51694</link>
      <description>&lt;P&gt;That worked! Thanks Wendy!&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2020 20:12:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Color-or-Mark-by-Column/m-p/265360#M51694</guid>
      <dc:creator>ERoderz</dc:creator>
      <dc:date>2020-05-08T20:12:57Z</dc:date>
    </item>
  </channel>
</rss>

