<?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: Select All Columns and Delete Formula Property? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/267971#M52165</link>
    <description>Short, simple and helpful. thanks</description>
    <pubDate>Wed, 20 May 2020 13:06:21 GMT</pubDate>
    <dc:creator>Thomas1</dc:creator>
    <dc:date>2020-05-20T13:06:21Z</dc:date>
    <item>
      <title>Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11322#M10859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Comparable to Copy All Paste Special Values in Excel, how can I select all columns in Data Table and delete column formulas while preserving the values of each column in JSL Script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This previous discussion was a beneficial first step.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/thread/58131" target="_blank"&gt;JSL - How to remove formula from column?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Oct 2016 13:16:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11322#M10859</guid>
      <dc:creator>aandw</dc:creator>
      <dc:date>2016-10-28T13:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11323#M10860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same question. Currently, when I use &amp;lt;&amp;lt;delete property(formula) it removes the formula and the values. When I clear the formula manually by going to the column menu it does keep the values, but I need a script solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 17:37:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11323#M10860</guid>
      <dc:creator>aniy</dc:creator>
      <dc:date>2015-05-29T17:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11324#M10861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Two approaches to "Paste Special" with jsl.&lt;/P&gt;&lt;P style="font-family: Courier; color: #032ce4;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;Current Data Table&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-family: Courier; color: #008f00;"&gt;// 1. Make a copy without formulas (and keep original table)&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;dt &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;Subset&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;Copy formula&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; All rows&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; Selected columns only&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;))&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-family: Courier; color: #008f00;"&gt;// 2. loop through columns and delete any formulas&lt;/P&gt;&lt;P style="font-family: Courier; color: #011993;"&gt;&lt;SPAN style="color: #000000;"&gt;cols &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #032ce4;"&gt;dt&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #011993;"&gt;get column names&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;SPAN style="color: #032ce4;"&gt;For&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;i &lt;SPAN style="color: #011993;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; i &lt;SPAN style="color: #011993;"&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN style="color: #032ce4;"&gt;N Col&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dt&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt; i&lt;SPAN style="color: #011993;"&gt;++,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cols&lt;STRONG&gt;[&lt;/STRONG&gt;i&lt;STRONG&gt;]&lt;/STRONG&gt; &lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN style="color: #011993;"&gt;&lt;STRONG&gt;delete property&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;formula&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: Courier;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 17:57:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11324#M10861</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2015-05-29T17:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11325#M10862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's strange. For me values are retained after running &lt;EM&gt;&amp;lt;&amp;lt; Delete Property(Formula)&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently on JMP 12 on Mac, but I am 99% certain it worked the same way in JMP 11.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 18:03:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11325#M10862</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2015-05-29T18:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11326#M10863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tested in JMP 9, JMP 10 and JMP 11 and the values were retained in all versions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you test with this simple script and tell us what happens with the "Pred Formula ABRASION" column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier; color: #942193;"&gt;&lt;SPAN style="color: #032ce4;"&gt;open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;"$SAMPLE_DATA\Tiretread.jmp"&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;SPAN style="color: #032ce4;"&gt;column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #942193;"&gt;"Pred Formula ABRASION"&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;delete property&lt;STRONG&gt;(&lt;/STRONG&gt;formula&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #011993;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 18:15:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11326#M10863</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2015-05-29T18:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11327#M10864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One non-scripting option would be use Standardize Attributes.&amp;nbsp; Select all of the columns where you want to remove the formula in Columns box on the left of the data table.&amp;nbsp; Right click in the blue (highlighted) area and select Standardize Attributes.&amp;nbsp; Go to Delete Properties at the bottom of the dialog box and select Column Properties.&amp;nbsp; Select Formula and then click apply.&amp;nbsp; The formulas should be removed and the values preserved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2015 18:39:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11327#M10864</guid>
      <dc:creator>Bill_Worley</dc:creator>
      <dc:date>2015-05-29T18:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11328#M10865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply, MS. Somehow I didn't get that notification and I am replying late. &lt;/P&gt;&lt;P&gt;The proposed solution: column(dt,1)&amp;lt;&amp;lt;delete formula; and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;column(dt,1)&amp;lt;&amp;lt;delete property (formula); worked eventually. I don't know what was wrong when I first tried it. I am using JMP 10 on Windows 7&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 19:17:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11328#M10865</guid>
      <dc:creator>aniy</dc:creator>
      <dc:date>2015-06-10T19:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11329#M10866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is exactly what I was looking for! Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 13:29:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/11329#M10866</guid>
      <dc:creator>robust1972</dc:creator>
      <dc:date>2016-05-05T13:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/41409#M24167</link>
      <description>&lt;P&gt;I am using&amp;nbsp;&lt;SPAN&gt;delete property(Formula) in for loop and it does not delete formula. I am using JMP13. Below is&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Try( column(datatable( dtname || "_Wide"), newcol) &amp;lt;&amp;lt; Delete Formula ); &amp;nbsp;&amp;lt;&amp;lt; delete property(Formula);&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2017 02:01:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/41409#M24167</guid>
      <dc:creator>ram</dc:creator>
      <dc:date>2017-07-03T02:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/42577#M24729</link>
      <description>&lt;P&gt;If you delete the formula in the same script you are creating the formula, you will need to use some kind of wait(1) function to allow the formula to calculate before deleting it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Column( "Name", Formula());
Wait(1);
:Name &amp;lt;&amp;lt; Delete Formula;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 20:40:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/42577#M24729</guid>
      <dc:creator>DIVIDESbyZER0</dc:creator>
      <dc:date>2017-07-27T20:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Columns and Delete Formula Property?</title>
      <link>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/267971#M52165</link>
      <description>Short, simple and helpful. thanks</description>
      <pubDate>Wed, 20 May 2020 13:06:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Select-All-Columns-and-Delete-Formula-Property/m-p/267971#M52165</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2020-05-20T13:06:21Z</dc:date>
    </item>
  </channel>
</rss>

