<?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 How to add repeating character values to column? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-add-repeating-character-values-to-column/m-p/527464#M75131</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm looking to create a column and populate it with a list of character and numeric values - [ Min, Max, 0.5, 0.6,.....,1], and this list repeated 50 times. I usually copy paste these into a column (as shown below), but I'm wondering if there's a way do it using JSL ( using JMP14).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D_T_M_0-1658993043828.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44393i55FBBCE2750E19BD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="D_T_M_0-1658993043828.png" alt="D_T_M_0-1658993043828.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:52:04 GMT</pubDate>
    <dc:creator>D_T_M</dc:creator>
    <dc:date>2023-06-10T23:52:04Z</dc:date>
    <item>
      <title>How to add repeating character values to column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-repeating-character-values-to-column/m-p/527464#M75131</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'm looking to create a column and populate it with a list of character and numeric values - [ Min, Max, 0.5, 0.6,.....,1], and this list repeated 50 times. I usually copy paste these into a column (as shown below), but I'm wondering if there's a way do it using JSL ( using JMP14).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D_T_M_0-1658993043828.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44393i55FBBCE2750E19BD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="D_T_M_0-1658993043828.png" alt="D_T_M_0-1658993043828.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:52:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-repeating-character-values-to-column/m-p/527464#M75131</guid>
      <dc:creator>D_T_M</dc:creator>
      <dc:date>2023-06-10T23:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add repeating character values to column?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-repeating-character-values-to-column/m-p/527581#M75139</link>
      <description>&lt;P&gt;Using Repeat() with the list you want to repeat should work. Quick example (tested with JMP16):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);


list_to_repeat = {"MIN", "MAX", "0.5", "1", "2"};
list_to_col = Repeat(list_to_repeat, 5);

dt = New Table("",
	New Column("Column 1", Character, Nominal, Values(list_to_col))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Jul 2022 11:00:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-repeating-character-values-to-column/m-p/527581#M75139</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-07-28T11:00:50Z</dc:date>
    </item>
  </channel>
</rss>

