<?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: Merging Multiple Tables in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576213#M78428</link>
    <description>&lt;P&gt;You can use the Tabulate platform to get the table you need.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jed_Campbell_0-1669933523856.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47869i43F4331114365D45/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jed_Campbell_0-1669933523856.png" alt="Jed_Campbell_0-1669933523856.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(Data Table( "Untitled 148" ) &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Analysis Columns( :Column 2, :Column 3, :Column 4, :Column 5 ) ),
		Row Table( Grouping Columns( :Column 1 ) )
	)
)) &amp;lt;&amp;lt; Make Into Data Table&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 01 Dec 2022 22:25:48 GMT</pubDate>
    <dc:creator>Jed_Campbell</dc:creator>
    <dc:date>2022-12-01T22:25:48Z</dc:date>
    <item>
      <title>Merging Multiple Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576156#M78423</link>
      <description>&lt;P&gt;Is there a way in JMP to join multiple tables at once. I have a very large data set and I need pick various data out of different rows and columns for various functions. I can do this with the built-in JMP Query Builder, then save the scripts for individual functions. However, this yields multiple data tables, all with one common column of data. Is there a way to have a script that joins all these tables at once based on the one common column? I'd like a script that I can have saved so I don't have to merge tables one at a time every time I do this.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:57:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576156#M78423</guid>
      <dc:creator>LargeChipmunk17</dc:creator>
      <dc:date>2023-06-10T23:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Multiple Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576189#M78424</link>
      <description>&lt;P&gt;Assuming you have a list with the names of the tables you want to merge and that the column names are all the same, the concatenate() function should work for you. Example below that attempts to merge all open tables:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dtlist = {};

For( i = 1, i &amp;lt;= N Table(), i++,
	dt = data table(i);
	insert into(dtList, dt );
);

dtbigtable = concatenate (dtlist);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Dec 2022 21:58:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576189#M78424</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2022-12-01T21:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Multiple Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576205#M78426</link>
      <description>&lt;P&gt;Hi Jed,&lt;/P&gt;&lt;P&gt;Thank you for the quick response. That's close to what I'm looking for, but not quite. Unfortunately, that yields a table similar to the one below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LargeChipmunk17_0-1669932796918.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47865i235F54921A5214F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LargeChipmunk17_0-1669932796918.png" alt="LargeChipmunk17_0-1669932796918.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;What I'm trying to achieve is more like what's shown below, so that I can use fit model with the data:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LargeChipmunk17_1-1669932863322.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47866iBAEED15639F062DF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LargeChipmunk17_1-1669932863322.png" alt="LargeChipmunk17_1-1669932863322.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 22:14:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576205#M78426</guid>
      <dc:creator>LargeChipmunk17</dc:creator>
      <dc:date>2022-12-01T22:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Multiple Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576213#M78428</link>
      <description>&lt;P&gt;You can use the Tabulate platform to get the table you need.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jed_Campbell_0-1669933523856.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/47869i43F4331114365D45/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jed_Campbell_0-1669933523856.png" alt="Jed_Campbell_0-1669933523856.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(Data Table( "Untitled 148" ) &amp;lt;&amp;lt; Tabulate(
	Add Table(
		Column Table( Analysis Columns( :Column 2, :Column 3, :Column 4, :Column 5 ) ),
		Row Table( Grouping Columns( :Column 1 ) )
	)
)) &amp;lt;&amp;lt; Make Into Data Table&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Dec 2022 22:25:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576213#M78428</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2022-12-01T22:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Multiple Tables</title>
      <link>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576238#M78429</link>
      <description>&lt;P&gt;Thank you that fixes my problem!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 22:39:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Merging-Multiple-Tables/m-p/576238#M78429</guid>
      <dc:creator>LargeChipmunk17</dc:creator>
      <dc:date>2022-12-01T22:39:10Z</dc:date>
    </item>
  </channel>
</rss>

