<?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: script ligne par date in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721312#M90335</link>
    <description>&lt;P&gt;Using &lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/add-rows.shtml#ww782295" target="_blank" rel="noopener"&gt;Add Rows&lt;/A&gt; is one option&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; Add Rows({name = "David", age = 15});&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I prefer usually adding new empty row and then using &lt;LI-MESSAGE title="Data table subscripting" uid="21013" url="https://community.jmp.com/t5/Uncharted/Data-table-subscripting/m-p/21013#U21013" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; to fill in the values.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Feb 2024 15:43:05 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-02-01T15:43:05Z</dc:date>
    <item>
      <title>script ligne par date</title>
      <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721289#M90332</link>
      <description>&lt;P&gt;Bonjour à tous,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;J’aimerais sur une table de données JMP, remplir des lignes avec des variables qui se mettent à jour tous les jours.&lt;/P&gt;&lt;P&gt;J’étudie et je mets à jour avec un script JSL les mêmes variables A, B et C tous les jours.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Par exemple aujourd’hui, le 01/02/2024 j’aimerais que la ligne 1 se remplisse avec les données A, B et C.&lt;/P&gt;&lt;P&gt;Le 02/02/2024 j’aimerais que la ligne 2 se remplisse avec les nouvelles données A, B et C.&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Ect&lt;/FONT&gt;... jusqu’au 31/12/2024.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Comment est-il possible de faire un script de cette façon ?&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Pouvoir chaque nouveau jour, faire +1 sur le remplissage des lignes.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Merci pour votre aide !&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 15:26:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721289#M90332</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-02-01T15:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: script ligne par date</title>
      <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721312#M90335</link>
      <description>&lt;P&gt;Using &lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/add-rows.shtml#ww782295" target="_blank" rel="noopener"&gt;Add Rows&lt;/A&gt; is one option&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; Add Rows({name = "David", age = 15});&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I prefer usually adding new empty row and then using &lt;LI-MESSAGE title="Data table subscripting" uid="21013" url="https://community.jmp.com/t5/Uncharted/Data-table-subscripting/m-p/21013#U21013" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; to fill in the values.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 15:43:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721312#M90335</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-01T15:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: script ligne par date</title>
      <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721337#M90338</link>
      <description>&lt;P&gt;Oui je suis d'accord avec vous, merci pour votre réponse.&lt;/P&gt;&lt;P&gt;Seulement comment peut-on intégrer dans un script JSL le remplissage automatique de la ligne d'après à chaque jour d'après.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Dans le script JSL :&lt;/U&gt;&lt;/P&gt;&lt;P&gt;- jour 1 remplissage ligne 1 avec A, B et C&lt;/P&gt;&lt;P&gt;- jour 2 remplissage ligne 2 avec A, B et C&lt;/P&gt;&lt;P&gt;-...&lt;/P&gt;&lt;P&gt;- jour 365 remplissage ligne 365 avec A, B et C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sans que l'utilisateur ait besoin de le faire tous les jours !&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 16:36:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721337#M90338</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-02-01T16:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: script ligne par date</title>
      <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721341#M90340</link>
      <description>&lt;P&gt;Maybe you have to schedule it with some sort of task scheduler? (I don't know with the information you have provided)&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 16:49:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721341#M90340</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-01T16:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: script ligne par date</title>
      <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721342#M90341</link>
      <description>&lt;P&gt;What event would you use to trigger the addition of a new row?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If, for example, the event was opening the data table you could add an &lt;A href="https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/preferences-for-data-tables.shtml" target="_blank" rel="noopener"&gt;OnOpen script&lt;/A&gt; to add the row to the data table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have in mind some other event in mind?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 16:52:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721342#M90341</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2024-02-01T16:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: script ligne par date</title>
      <link>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721355#M90343</link>
      <description>&lt;P&gt;You may also want to consider using the Concatenate Platform.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Tables=&amp;gt;Concatenate&lt;/P&gt;
&lt;P&gt;It would allow you to take your new line of data and read it into a new JMP table, and the append it to your main table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Data Table( "&amp;lt;your main table&amp;gt;" );

dtAujourdhui = Open( "&amp;lt;The new data&amp;gt;" );

// Ajouter les nouvelles données à la table principale
dt &amp;lt;&amp;lt; concatenate( dtAujourdhui, Append to first table( 1 ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Feb 2024 17:11:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/script-ligne-par-date/m-p/721355#M90343</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-02-01T17:11:53Z</dc:date>
    </item>
  </channel>
</rss>

