<?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 do combine numbers in a column with other literals to form text characters? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531284#M75444</link>
    <description>&lt;P&gt;Thank Jim!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-08-08_07-23-40.png" style="width: 321px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44626i583D5195A75CB697/image-size/large?v=v2&amp;amp;px=999" role="button" title="2022-08-08_07-23-40.png" alt="2022-08-08_07-23-40.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Aug 2022 23:30:49 GMT</pubDate>
    <dc:creator>lala</dc:creator>
    <dc:date>2022-08-07T23:30:49Z</dc:date>
    <item>
      <title>How do combine numbers in a column with other literals to form text characters?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531175#M75433</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
ar = dt &amp;lt;&amp;lt; GetAsMatrix( {4} );

txt1 = "abc=" || Char( ar );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;I use the above code does not match, much []&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-08-07_22-14-57.png" style="width: 354px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44620i592478D2BEA2943F/image-size/large?v=v2&amp;amp;px=999" role="button" title="2022-08-07_22-14-57.png" alt="2022-08-07_22-14-57.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;What I need is the following result:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Thanks!&lt;/SPAN&gt;&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;&lt;BR /&gt;txt1 = "abc=59, 61, 55, 66, 52, 60, 61, 51, 60, 61, 56, 65, 63, 58, 59, 61, 62, 65, 63, 62, 63, 64, 65, 64, 68, 64, 69, 62, 64, 67, 65, 66, 62, 66, 65, 60, 68, 62, 68, 70"&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, 09 Jun 2023 17:06:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531175#M75433</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-06-09T17:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do combine numbers in a column with other literals to form text characters?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531214#M75435</link>
      <description>&lt;P&gt;Apparently the JSL parser is forcing the numerics into a matrix.&amp;nbsp; I suggest you turn the issue into JMP support for their feedback.&amp;nbsp; In the mean time, here is a workaround:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
// Open Data Table: big class.jmp
// → Data Table( "big class" )
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
ar = dt &amp;lt;&amp;lt; GetAsMatrix( 4 );

txt1 = "abc=" || char(ar[1]);
for(i=2,i&amp;lt;=nitems(ar), i++,
	txt1 = txt1 || ", " || char(ar[i])
);
show(txt1);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 07 Aug 2022 17:45:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531214#M75435</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-08-07T17:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do combine numbers in a column with other literals to form text characters?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531284#M75444</link>
      <description>&lt;P&gt;Thank Jim!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2022-08-08_07-23-40.png" style="width: 321px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44626i583D5195A75CB697/image-size/large?v=v2&amp;amp;px=999" role="button" title="2022-08-08_07-23-40.png" alt="2022-08-08_07-23-40.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Aug 2022 23:30:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531284#M75444</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2022-08-07T23:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do combine numbers in a column with other literals to form text characters?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531683#M75476</link>
      <description>&lt;P&gt;If you know it's just going to be a matrix, you could just lop off the [].&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;txt1 = "abc=" || Substitute(Char( ar ), "[", "", "]", "");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Aug 2022 22:06:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-combine-numbers-in-a-column-with-other-literals-to-form/m-p/531683#M75476</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2022-08-08T22:06:59Z</dc:date>
    </item>
  </channel>
</rss>

