<?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 Turn off &amp;quot;Suppress Eval&amp;quot; on all columns in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766058#M94597</link>
    <description>&lt;P&gt;Is there a way to turn off "Suppress Eval" for all columns?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(It seems to have automatically turned on "Suppress Eval" when I saved a .jrp, and I need to evaluate many formula columns in this data table.)&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jun 2024 20:58:35 GMT</pubDate>
    <dc:creator>MarkJSchwab</dc:creator>
    <dc:date>2024-06-14T20:58:35Z</dc:date>
    <item>
      <title>Turn off "Suppress Eval" on all columns</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766058#M94597</link>
      <description>&lt;P&gt;Is there a way to turn off "Suppress Eval" for all columns?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(It seems to have automatically turned on "Suppress Eval" when I saved a .jrp, and I need to evaluate many formula columns in this data table.)&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 20:58:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766058#M94597</guid>
      <dc:creator>MarkJSchwab</dc:creator>
      <dc:date>2024-06-14T20:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off "Suppress Eval" on all columns</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766069#M94598</link>
      <description>&lt;P&gt;See Suppress Formula Eval() in the Scripting Index&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 21:10:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766069#M94598</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-06-14T21:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off "Suppress Eval" on all columns</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766117#M94604</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1718434851753.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65251iDD949FDD62F29E6B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1718434851753.png" alt="hogi_0-1718434851753.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;suppress Formula Eval(1)&lt;/FONT&gt;&amp;nbsp;[without a data table] is great to trick colleagues - no chance to notice - JMP is stuck and no chance to fight against it, neither via the GUI:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1718433633982.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65244iE755E627F3FB15F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1718433633982.png" alt="hogi_2-1718433633982.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;nor via&amp;nbsp; &amp;nbsp;&lt;FONT face="courier new,courier"&gt;dt &amp;lt;&amp;lt; Suppress Formula Eval( 0 );&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;_____________________________________&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some Table operations like Join have a setting to suppress formula evaluations:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1718433179971.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65238i2ADC156A3BCEE0E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1718433179971.png" alt="hogi_0-1718433179971.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If every column is disabled &lt;EM&gt;&lt;STRONG&gt;individually&lt;/STRONG&gt;&lt;/EM&gt;, then you have to enable the formula evaluation individually:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

f= Function({},New Column( "height+weight",
	Formula( :height + :weight ),
));
f;
f;
f;&lt;BR /&gt;column (6) &amp;lt;&amp;lt; Suppress Eval( 1 );&lt;BR /&gt;column (7) &amp;lt;&amp;lt; Suppress Eval( 1 );&lt;BR /&gt;column (8) &amp;lt;&amp;lt; Suppress Eval( 1 );

Ncols = ncols(dt);

for (i=1,i&amp;lt;=NCols, i++,
column(i) &amp;lt;&amp;lt; suppress  eval(0)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;fun fact:&lt;BR /&gt;the status in the columns menu doesn't get updated automatically, so don't get confused by the gray plus sign:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1718433450474.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65242i76D905723D92C0AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1718433450474.png" alt="hogi_1-1718433450474.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 07:01:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766117#M94604</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-06-15T07:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off "Suppress Eval" on all columns</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766118#M94605</link>
      <description>&lt;P&gt;There is also difference between &amp;lt;&amp;lt; Suppress Formula Eval() and Suppress Eval(). &amp;lt;&amp;lt; Suppress Formula Eval() is for data tables and Suppress Eval for formula columns&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1718433343586.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65239iD0F9DF383C1A3522/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1718433343586.png" alt="jthi_0-1718433343586.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1718433384279.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65240i4F3ADF04E969A26E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1718433384279.png" alt="jthi_1-1718433384279.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you have Suppress Eval enabled, you can loop over your columns (use &amp;lt;&amp;lt; get column names and for each) and send &amp;lt;&amp;lt; Suppress Eval(0) to all your columns. I'm not sure if there is any "easy" way to do this interactively (Standardize Attributes won't work as it will replace all your formulas), subset can be used but it will create a new table which might not be ideal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if you don't mind creating new datatable subset is fairly easy option&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_4-1718433674152.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65245i41566C05E852E448/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_4-1718433674152.png" alt="jthi_4-1718433674152.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_5-1718433685376.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65246i6587FAE2DD938DC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_5-1718433685376.png" alt="jthi_5-1718433685376.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_6-1718433699036.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/65247iCEC3B75A2A0C92D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_6-1718433699036.png" alt="jthi_6-1718433699036.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Jun 2024 06:48:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/766118#M94605</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-06-15T06:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Turn off "Suppress Eval" on all columns</title>
      <link>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/773028#M95382</link>
      <description>&lt;P&gt;Thanks for answering, you made my day.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 13:39:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Turn-off-quot-Suppress-Eval-quot-on-all-columns/m-p/773028#M95382</guid>
      <dc:creator>LuzBosco</dc:creator>
      <dc:date>2024-07-15T13:39:37Z</dc:date>
    </item>
  </channel>
</rss>

