<?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: Make calculation show on table summary? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Make-calculation-show-on-table-summary/m-p/762042#M94051</link>
    <description>&lt;P&gt;Here is a simple example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt =
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

dtSumm = Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary(
	Mean( :height ),
	Freq( "None" ),
	Weight( "None" ),
	output table name( "Summary of Big Class" )
);

dtSumm &amp;lt;&amp;lt; New column("Ratio", formula(:"Mean(height)"n/56))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1717083578197.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64637i0B0AD9EF177352B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1717083578197.png" alt="txnelson_0-1717083578197.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you are using the Tabulate Platform, you will need to generate the calculated value in the data table, and then display it in the Tabulate output&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1717083682275.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64638i4F9F4450B13D6CD6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1717083682275.png" alt="txnelson_1-1717083682275.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="txnelson_3-1717083727403.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64640iA53C226FDC640F8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_3-1717083727403.png" alt="txnelson_3-1717083727403.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or create a virtual column in Tabulate and use it in the display&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_4-1717083917910.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64641iBD6B8FB1554F1D8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_4-1717083917910.png" alt="txnelson_4-1717083917910.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="txnelson_6-1717083977035.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64643iFB9830B2622205F6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_6-1717083977035.png" alt="txnelson_6-1717083977035.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is not how you are creating your summary table, please provide a sample of what you are doing&lt;/P&gt;</description>
    <pubDate>Thu, 30 May 2024 15:46:26 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2024-05-30T15:46:26Z</dc:date>
    <item>
      <title>Make calculation show on table summary?</title>
      <link>https://community.jmp.com/t5/Discussions/Make-calculation-show-on-table-summary/m-p/762041#M94050</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I am trying to get a column to show up on my table summary. This column would be the output of one of the columns IN the table summary divided by a constant. Is there a way to do that?&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 14:59:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-calculation-show-on-table-summary/m-p/762041#M94050</guid>
      <dc:creator>eruck</dc:creator>
      <dc:date>2024-05-30T14:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Make calculation show on table summary?</title>
      <link>https://community.jmp.com/t5/Discussions/Make-calculation-show-on-table-summary/m-p/762042#M94051</link>
      <description>&lt;P&gt;Here is a simple example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt =
// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "$SAMPLE_DATA/Big Class.jmp" );

dtSumm = Data Table( "Big Class" ) &amp;lt;&amp;lt; Summary(
	Mean( :height ),
	Freq( "None" ),
	Weight( "None" ),
	output table name( "Summary of Big Class" )
);

dtSumm &amp;lt;&amp;lt; New column("Ratio", formula(:"Mean(height)"n/56))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1717083578197.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64637i0B0AD9EF177352B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1717083578197.png" alt="txnelson_0-1717083578197.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you are using the Tabulate Platform, you will need to generate the calculated value in the data table, and then display it in the Tabulate output&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1717083682275.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64638i4F9F4450B13D6CD6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1717083682275.png" alt="txnelson_1-1717083682275.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="txnelson_3-1717083727403.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64640iA53C226FDC640F8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_3-1717083727403.png" alt="txnelson_3-1717083727403.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or create a virtual column in Tabulate and use it in the display&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_4-1717083917910.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64641iBD6B8FB1554F1D8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_4-1717083917910.png" alt="txnelson_4-1717083917910.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="txnelson_6-1717083977035.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64643iFB9830B2622205F6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_6-1717083977035.png" alt="txnelson_6-1717083977035.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is not how you are creating your summary table, please provide a sample of what you are doing&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 15:46:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Make-calculation-show-on-table-summary/m-p/762042#M94051</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-05-30T15:46:26Z</dc:date>
    </item>
  </channel>
</rss>

