<?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: Pass Column Properties on to Summary Table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882427#M104638</link>
    <description>&lt;P&gt;Which column properties? To which columns? Some do get copied over just fine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are willing to utilize clipboard scripting index does provide quite simple example of copying column properties using JSL&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Tiretread.jmp");
dt &amp;lt;&amp;lt; Copy Column Properties({:MODULUS, :ELONG});
dt2 = New Table("test it",
	New Column("T1", numeric, continuous),
	New Column("T2", numeric, continuous),
	New Column("T3", numeric, continuous),
	Add Rows(10)
);
dt2 &amp;lt;&amp;lt; Paste Column Properties({:T1, :T3});&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 30 Jun 2025 16:11:37 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-06-30T16:11:37Z</dc:date>
    <item>
      <title>Pass Column Properties on to Summary Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882417#M104637</link>
      <description>&lt;P&gt;I have a complicated way to do this, wondering if something better exists?&amp;nbsp; Is it possible to have the column properties from a parent table pass forward to a summary table?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 15:55:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882417#M104637</guid>
      <dc:creator>SpannerHead</dc:creator>
      <dc:date>2025-06-30T15:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Column Properties on to Summary Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882427#M104638</link>
      <description>&lt;P&gt;Which column properties? To which columns? Some do get copied over just fine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are willing to utilize clipboard scripting index does provide quite simple example of copying column properties using JSL&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Tiretread.jmp");
dt &amp;lt;&amp;lt; Copy Column Properties({:MODULUS, :ELONG});
dt2 = New Table("test it",
	New Column("T1", numeric, continuous),
	New Column("T2", numeric, continuous),
	New Column("T3", numeric, continuous),
	Add Rows(10)
);
dt2 &amp;lt;&amp;lt; Paste Column Properties({:T1, :T3});&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 Jun 2025 16:11:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882427#M104638</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-06-30T16:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Column Properties on to Summary Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882478#M104643</link>
      <description>&lt;P&gt;Jarmo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your suggestion and some information I found here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Copying-column-properties-from-one-data-table-to-another/m-p/9892" target="_blank"&gt;Solved: Copying column properties from one data table to another - JMP User Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I came up with this.&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 );&lt;BR /&gt;dt = Current Data Table();&lt;BR /&gt;Summarize( unique_values = by( :LOT ) );&lt;BR /&gt;colList = dt &amp;lt;&amp;lt; get column names( numeric, string );&lt;BR /&gt;SpecCols = {};&lt;BR /&gt;For Each( {colnames, index}, colList,&lt;BR /&gt;spec = Column( dt, colnames ) &amp;lt;&amp;lt; get property( "Spec Limits" );&lt;BR /&gt;If( !Is Empty( spec ),&lt;BR /&gt;Insert Into( SpecCols, colnames )&lt;BR /&gt;);&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;Try(For( i = 1, i &amp;lt;= N Cols( dt ), i++,
  colProps = Column( dt, SpecCols[i] ) &amp;lt;&amp;lt; Get Column Properties;
  Column( Data Table( "Yield By Wafer" ), SpecCols[i] ) &amp;lt;&amp;lt; Add Column Properties( colProps );
));
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;dt is the parent table, SpecCols are a list of columns with specs and Yield By Wafer is the summary.&amp;nbsp; This works but only for some of the columns, I'm trying to figure out the pattern.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 20:27:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882478#M104643</guid>
      <dc:creator>SpannerHead</dc:creator>
      <dc:date>2025-06-30T20:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Column Properties on to Summary Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882479#M104644</link>
      <description>&lt;P&gt;I think I figured it out.&amp;nbsp; I had an unusual data column where all the entries were missing value codes.&amp;nbsp; The iteration appears to stop at that point and fails to add column properties thereafter.&amp;nbsp; Other than that, it appears to work well.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 21:09:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882479#M104644</guid>
      <dc:creator>SpannerHead</dc:creator>
      <dc:date>2025-06-30T21:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Pass Column Properties on to Summary Table</title>
      <link>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882558#M104656</link>
      <description>&lt;P&gt;For moving over spec limits you could also just use Manage Spec Limits&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 05:35:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Pass-Column-Properties-on-to-Summary-Table/m-p/882558#M104656</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-01T05:35:48Z</dc:date>
    </item>
  </channel>
</rss>

