<?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 concatenate / save and evaluate formulas in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224063#M44534</link>
    <description>&lt;P&gt;When manually concatenate two tables there is an option to “save and evaluate formulas” so the formulas in the new or appended date gets evaluated.&lt;/P&gt;
&lt;P&gt;In JSL this option is not available only “keep formula” witch suppresses the evaluation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt_1 &amp;lt;&amp;lt; Concatenate(dt_2,Append to first table,save and evaluate formulas(1));&amp;nbsp;//&amp;nbsp;this&amp;nbsp;is&amp;nbsp;not&amp;nbsp;possible&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I know that you can use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt_1:mycol &amp;lt;&amp;lt; Suppress Eval( 0 );
dt_1:mycol &amp;lt;&amp;lt; Eval Formula(1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get tho the same result as with the manual option, but I must search and do this for each column with a formula.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a hidden function or plans to include it in Concatenate as an option?&lt;/P&gt;</description>
    <pubDate>Thu, 29 Aug 2019 09:46:37 GMT</pubDate>
    <dc:creator>Mauro_Gerber</dc:creator>
    <dc:date>2019-08-29T09:46:37Z</dc:date>
    <item>
      <title>concatenate / save and evaluate formulas</title>
      <link>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224063#M44534</link>
      <description>&lt;P&gt;When manually concatenate two tables there is an option to “save and evaluate formulas” so the formulas in the new or appended date gets evaluated.&lt;/P&gt;
&lt;P&gt;In JSL this option is not available only “keep formula” witch suppresses the evaluation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt_1 &amp;lt;&amp;lt; Concatenate(dt_2,Append to first table,save and evaluate formulas(1));&amp;nbsp;//&amp;nbsp;this&amp;nbsp;is&amp;nbsp;not&amp;nbsp;possible&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I know that you can use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt_1:mycol &amp;lt;&amp;lt; Suppress Eval( 0 );
dt_1:mycol &amp;lt;&amp;lt; Eval Formula(1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get tho the same result as with the manual option, but I must search and do this for each column with a formula.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a hidden function or plans to include it in Concatenate as an option?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 09:46:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224063#M44534</guid>
      <dc:creator>Mauro_Gerber</dc:creator>
      <dc:date>2019-08-29T09:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate / save and evaluate formulas</title>
      <link>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224074#M44535</link>
      <description>&lt;P&gt;Keep Formulas does not supress the evaluation as far as I can tell.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this script and see that the formula in &lt;EM&gt;Row No&lt;/EM&gt; is evaluated in the resulting table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1 = New Table( "One Table",
	Add Rows( 10 ),
	New Column( "Row no",
		Numeric,
		"Continuous",
		Format( "Best", 12 ),
		Formula( Row() )
	)
);

dt2 = New Table( "Another Table",
	Add Rows( 10 ),
	New Column( "Row no",
		Numeric,
		"Continuous",
		Format( "Best", 12 ),
		Formula( Row() )
	)
);

Data Table( "One Table" ) &amp;lt;&amp;lt;
Concatenate(
	Data Table( "Another Table" ),
	Keep Formulas,
	Create source column
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMPScreenSnapz041.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/19062i5516983770EF3531/image-size/large?v=v2&amp;amp;px=999" role="button" title="JMPScreenSnapz041.png" alt="JMPScreenSnapz041.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 09:53:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224074#M44535</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2019-08-29T09:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate / save and evaluate formulas</title>
      <link>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224099#M44537</link>
      <description>&lt;P&gt;THX for your quick reply, your example works fine, I even preset the column to "supress eval" and it evaluate it after the concat.&lt;BR /&gt;So my table has a formula, but it's not executed and is still supressed after the concat. I found earlyer a mention that it could be a time issue that the table hasn't time to evaluate the column and is somehow stuck. I will investigate further.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 13:09:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224099#M44537</guid>
      <dc:creator>Mauro_Gerber</dc:creator>
      <dc:date>2019-08-29T13:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate / save and evaluate formulas</title>
      <link>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224105#M44541</link>
      <description>&lt;P&gt;I could follow the datamanipulation and found the "problem"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I make a subset of an existing data table&amp;nbsp; and clear all the data which locks the formula column and suppresses the evaluation.&lt;/P&gt;&lt;P&gt;Then filling the table with data, but the formula stays&amp;nbsp;empty.&lt;/P&gt;&lt;P&gt;I concatenate multiple of the same tables (append to first table). If the master table has a supressed eval, concat tables are not evaluated either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Allow evaluation&amp;nbsp;of the subset solved the problem.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt_2 = dt &amp;lt;&amp;lt; Subset(Output Table( "temp" ),Selected Rows( 0 ),Rows( [1] ),Selected columns only( 0 ),copy formula(1),link to original data table(0),Suppress formula evaluation( 0 ));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Concat dt_2 has then formula evaluation enabled.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2019 14:00:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/concatenate-save-and-evaluate-formulas/m-p/224105#M44541</guid>
      <dc:creator>Mauro_Gerber</dc:creator>
      <dc:date>2019-08-29T14:00:15Z</dc:date>
    </item>
  </channel>
</rss>

