<?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: JSL implementation of merged cell display format similar to the tabulation function.  JMP17 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/904553#M106337</link>
    <description>&lt;P&gt;You cannot (easily) do cell merging in table box. Like hogi did already ask, could you just use the tabulate in your new window/report?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most of the things you can do with table box, can be found from Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1759135704698.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83812i889AAE92E1FE495D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1759135704698.png" alt="jthi_0-1759135704698.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Car Poll.jmp");

nw = New Window("",
	H List Box(
		Distribution(Continuous Distribution(Column(:age))),
		tab = dt &amp;lt;&amp;lt; Tabulate(
			Show Control Panel(0),
			Add Table(
				Column Table(Grouping Columns(:sex, :marital status)),
				Row Table(Grouping Columns(:country, :size))
			)
		)		
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://origin-www.jmp.com/support/help/en/18.2/#page/jmp/examples-of-creating-a-dashboard-from-two-reports.shtml#" target="_blank" rel="noopener"&gt;Scripting Guide &amp;gt; Display Trees &amp;gt; Construct Custom Windows &amp;gt; Examples of Creating a Dashboard from Two Reports&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are also some options outside of table box (such as using lineup box) but those generally do require more scripting.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Sep 2025 08:50:03 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-09-29T08:50:03Z</dc:date>
    <item>
      <title>JSL implementation of merged cell display format similar to the tabulation function.  JMP17</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/902803#M106177</link>
      <description>When generating reports using JSL, I want to place a table in a new window that resembles the style displayed by the 【Tabulate】 function (where cells with the same column values can be merged). The data for the report comes from a JMP table.&lt;BR /&gt;&lt;BR /&gt;【My Challenges】&lt;BR /&gt;JMP17&lt;BR /&gt;1. When I use a new window and add a table box, each row displays data, but cells with the same category are not merged. Is there a method in JSL to achieve a display similar to merging cells in Excel?&lt;BR /&gt;2. Additionally, is it possible to customize the dividing lines of the table? (Where the dividing lines appear and their format)</description>
      <pubDate>Tue, 23 Sep 2025 02:28:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/902803#M106177</guid>
      <dc:creator>DunnRankBudgie8</dc:creator>
      <dc:date>2025-09-23T02:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: JSL implementation of merged cell display format similar to the tabulation function.  JMP17</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/902843#M106180</link>
      <description>&lt;P&gt;can you use Tabulate in your report?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2025 03:53:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/902843#M106180</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-09-23T03:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: JSL implementation of merged cell display format similar to the tabulation function.  JMP17</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/904553#M106337</link>
      <description>&lt;P&gt;You cannot (easily) do cell merging in table box. Like hogi did already ask, could you just use the tabulate in your new window/report?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most of the things you can do with table box, can be found from Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1759135704698.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83812i889AAE92E1FE495D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1759135704698.png" alt="jthi_0-1759135704698.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Car Poll.jmp");

nw = New Window("",
	H List Box(
		Distribution(Continuous Distribution(Column(:age))),
		tab = dt &amp;lt;&amp;lt; Tabulate(
			Show Control Panel(0),
			Add Table(
				Column Table(Grouping Columns(:sex, :marital status)),
				Row Table(Grouping Columns(:country, :size))
			)
		)		
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="https://origin-www.jmp.com/support/help/en/18.2/#page/jmp/examples-of-creating-a-dashboard-from-two-reports.shtml#" target="_blank" rel="noopener"&gt;Scripting Guide &amp;gt; Display Trees &amp;gt; Construct Custom Windows &amp;gt; Examples of Creating a Dashboard from Two Reports&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are also some options outside of table box (such as using lineup box) but those generally do require more scripting.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Sep 2025 08:50:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-implementation-of-merged-cell-display-format-similar-to-the/m-p/904553#M106337</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-09-29T08:50:03Z</dc:date>
    </item>
  </channel>
</rss>

