<?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: Delete formula status without deleting values in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/429942#M67959</link>
    <description>&lt;P&gt;I've had the same issue this morning and had to place a wait before the delete formula line.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;wait(0);
:CoatingTime &amp;lt;&amp;lt; Delete property(Formula);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Before placing the 'wait(0)', my column values were deleted as well.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Oct 2021 14:33:23 GMT</pubDate>
    <dc:creator>PSchermerhorn</dc:creator>
    <dc:date>2021-10-25T14:33:23Z</dc:date>
    <item>
      <title>Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/230824#M45783</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a for loop for calling formulas from a file.&lt;/P&gt;&lt;P&gt;The loop works fine but when I try removing the formula and maintaining the created values using&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;delete formula&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;delete property(formula);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the formula is removed but the values are all gone as well.&lt;/P&gt;&lt;P&gt;This happens for both JMP 11 and 14.&lt;/P&gt;&lt;P&gt;can you please help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;loop:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;formula_table = Open( formula table adress, Worksheets( "Formulas" ), Invisible );
//open data table

 For( i = 1, i &amp;lt;= N Rows( formula_table ), i += 1,

 col = data &amp;lt;&amp;lt; New Column( formula_table:Column Name[i]/*, Eval( formula_table:Type[i] )*/ );
  If(
   formula_table:Type[i] == "Character", col &amp;lt;&amp;lt; Data Type( Character ),
   formula_table:Type[i] == "Numeric", col &amp;lt;&amp;lt; Data Type( Numeric )
  );
  a = Concat( formula_table:Formula[i] );
  a = Parse( a );
  col &amp;lt;&amp;lt; Formula( a ); // sets formula
  col &amp;lt;&amp;lt; delete formula;//doesn't work as described above
 );
 Close( formula_table, NoSave );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 18:14:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/230824#M45783</guid>
      <dc:creator>vsr</dc:creator>
      <dc:date>2019-10-25T18:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/230835#M45785</link>
      <description>&lt;P&gt;Here is a simple example showing that the&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; col &amp;lt;&amp;lt; delete property(formula);&lt;/P&gt;
&lt;P&gt;works. &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" );

col = dt &amp;lt;&amp;lt; New Column( "zippy", formula( Row() ) );

col &amp;lt;&amp;lt; delete property( formula );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Oct 2019 18:30:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/230835#M45785</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-10-25T18:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/429942#M67959</link>
      <description>&lt;P&gt;I've had the same issue this morning and had to place a wait before the delete formula line.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;wait(0);
:CoatingTime &amp;lt;&amp;lt; Delete property(Formula);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Before placing the 'wait(0)', my column values were deleted as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 14:33:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/429942#M67959</guid>
      <dc:creator>PSchermerhorn</dc:creator>
      <dc:date>2021-10-25T14:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/429973#M67962</link>
      <description>&lt;P&gt;I suggest using this dedicated message:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="delete.PNG" style="width: 921px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36979i248108DCD495BBEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="delete.PNG" alt="delete.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 15:02:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/429973#M67962</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-10-25T15:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/430014#M67964</link>
      <description>&lt;P&gt;I prefer to just &amp;lt;&amp;lt;Set Each Value since it seems like what you're really trying to do.&amp;nbsp; But you could also just dt &amp;lt;&amp;lt; Run Formulas() to make sure it actually finishes running before deleting the formula.&amp;nbsp;&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 = expr(:height/:weight);
Eval(EvalExpr( // doing this so it doesn't just keep the "f" var there
	dt &amp;lt;&amp;lt; New Column("SetEach", 
		&amp;lt;&amp;lt;Set Each Value(Expr(nameexpr(f)))
	);


	col = dt &amp;lt;&amp;lt; New Column("Form", 
		&amp;lt;&amp;lt;Formula(Expr(nameexpr(f)))
	);
	//dt &amp;lt;&amp;lt; Run Formulas(); // this will make sure it runs before you delete it.  
	col &amp;lt;&amp;lt; Delete Formula();
));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Oct 2021 15:15:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/430014#M67964</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2021-10-25T15:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724624#M90755</link>
      <description>&lt;P&gt;On the same note, is there a command for deleting formulas from multiple columns?&lt;/P&gt;&lt;P&gt;I would like to delete existing formulas in a table without deleting the values in columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to remove formulas by using the standardize attributes and remove formula, but nothing happened.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Feb 2024 13:45:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724624#M90755</guid>
      <dc:creator>Oren_Barilan</dc:creator>
      <dc:date>2024-02-18T13:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724630#M90758</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2610"&gt;@vince_faller&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I prefer to just &amp;lt;&amp;lt;Set Each Value ...&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes :)&lt;/img&gt;&lt;BR /&gt;I hope that S&lt;FONT face="courier new,courier"&gt;et Each Values&lt;/FONT&gt;&amp;nbsp;with this "unsupported" functionality will also be available in future versions of Jmp ...&lt;/P&gt;&lt;P&gt;TS -&amp;nbsp;&lt;SPAN&gt;00049239:&lt;BR /&gt;&lt;/SPAN&gt;&lt;LI-MESSAGE title="Make using formula expressions in Set Each Value and using expressions as first argument in Col statistical formulas supported behaviour" uid="666966" url="https://community.jmp.com/t5/JMP-Wish-List/Make-using-formula-expressions-in-Set-Each-Value-and-using/m-p/666966#U666966" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 14:52:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724630#M90758</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-19T14:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724674#M90768</link>
      <description>&lt;P&gt;I don't think there is, but it doesn't take much to delete the formula from a column list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For Each( {v, i}, collist, v &amp;lt;&amp;lt; Delete Formula );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Feb 2024 14:18:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724674#M90768</guid>
      <dc:creator>mmarchandTSI</dc:creator>
      <dc:date>2024-02-19T14:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724682#M90769</link>
      <description>&lt;P&gt;You can use &lt;A href="https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/standardize-attributes-and-properties-across-columns.shtml" target="_self"&gt;Standardize Attributes&lt;/A&gt; for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the bottom part of the dialog to Delete the Formula property.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-02-19_09-32-11.049.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61236i191E31461912F2B9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2024-02-19_09-32-11.049.png" alt="2024-02-19_09-32-11.049.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; Admittedly it is a bit confusing because after adding "Formula" you see a Remove button appear. That Remove is to remove the Formula entry from the Delete Properties section not to Remove the formula from columns. To remove the formula from the columns you have to click the OK or Apply button for the dialog.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-02-19_09-32-23.917.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61237iFDAE036217478BE5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2024-02-19_09-32-23.917.png" alt="2024-02-19_09-32-23.917.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 14:41:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/724682#M90769</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2024-02-19T14:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Delete formula status without deleting values</title>
      <link>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/848783#M102429</link>
      <description>&lt;P&gt;Had the same problem, wait solved it! Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 14:52:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Delete-formula-status-without-deleting-values/m-p/848783#M102429</guid>
      <dc:creator>Ake</dc:creator>
      <dc:date>2025-03-20T14:52:16Z</dc:date>
    </item>
  </channel>
</rss>

