<?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: How can I summarize multiple Excel Spreadsheets and output it into 1 table? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-summarize-multiple-Excel-Spreadsheets-and-output-it/m-p/432246#M68195</link>
    <description>&lt;P&gt;If you have all the spreadsheets in same folder you can try using Import Multiple Files which is found from Files menu. Then run it once manually to get the script from table script which will be something like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1635876443858.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37199i9D6601137D10ED2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1635876443858.png" alt="jthi_0-1635876443858.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And if you need to you can update your script to use Pick Directory() instead of Pick File() and modify the JMP made script to work with the path you get.&lt;/P&gt;</description>
    <pubDate>Tue, 02 Nov 2021 18:08:29 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2021-11-02T18:08:29Z</dc:date>
    <item>
      <title>How can I summarize multiple Excel Spreadsheets and output it into 1 table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-summarize-multiple-Excel-Spreadsheets-and-output-it/m-p/432235#M68194</link>
      <description>&lt;P&gt;Hello everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I look through a lot of data. Since all files are stored the same way I wanted to use this as a tool to help me find exactly what I'm looking for.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently able to summarize a single excel spreadsheet (removing duplicates) with this script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;Clear Symbols();

names default to here(1);

path = Pick File ();

dt = Open(
	path,
	Worksheets( "Data" ),
	Use for all sheets( 1 ),
	Concatenate Worksheets( 0 ),
	Create Concatenation Column( 0 ),
	Worksheet Settings(
		1,
		Has Column Headers( 1 ),
		Number of Rows in Headers( 1 ),
		Headers Start on Row( 1 ),
		Data Starts on Row( 2 ),
		Data Starts on Column( 2 ),
		Data Ends on Row( 0 ),
		Data Ends on Column( 3 ),
		Replicated Spanned Rows( 1 ),
		Replicated Spanned Headers( 0 ),
		Suppress Hidden Rows( 1 ),
		Suppress Hidden Columns( 1 ),
		Suppress Empty Columns( 1 ),
		Treat as Hierarchy( 0 ),
		Multiple Series Stack( 0 ),
		Import Cell Colors( 0 ),
		Limit Column Detect( 0 ),
		Column Separator String( "-" )
			
	)
	
);

dt &amp;lt;&amp;lt; select duplicate rows(match(:Wafer));
dt &amp;lt;&amp;lt; delete rows;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Attached is an example document (there are that many columns of data - I just deleted the rows) that this script is meant for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal with this post is to hopefully find a way to open multiple spreadsheets at the same time --&amp;gt; have it remove duplicates --&amp;gt; and output all values into a single table. This would help me save a lot of time instead of opening each spreadsheet one at a time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;LI-PRODUCT title="JMP" id="jmp"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:39:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-summarize-multiple-Excel-Spreadsheets-and-output-it/m-p/432235#M68194</guid>
      <dc:creator>Hobbi</dc:creator>
      <dc:date>2023-06-10T23:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I summarize multiple Excel Spreadsheets and output it into 1 table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-summarize-multiple-Excel-Spreadsheets-and-output-it/m-p/432246#M68195</link>
      <description>&lt;P&gt;If you have all the spreadsheets in same folder you can try using Import Multiple Files which is found from Files menu. Then run it once manually to get the script from table script which will be something like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1635876443858.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37199i9D6601137D10ED2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1635876443858.png" alt="jthi_0-1635876443858.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And if you need to you can update your script to use Pick Directory() instead of Pick File() and modify the JMP made script to work with the path you get.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 18:08:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-summarize-multiple-Excel-Spreadsheets-and-output-it/m-p/432246#M68195</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-11-02T18:08:29Z</dc:date>
    </item>
  </channel>
</rss>

