<?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: Concatenate in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54271#M30666</link>
    <description>&lt;P&gt;Here is the input script that you can use to input the files with, and then once they are input, you can concatenate them all together, and JMP will match the column names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
	"&amp;lt;Place the path to the data table in here&amp;gt;",
	columns(
		New Column( "FileName", Character, "Nominal" ),
		New Column( "Date",
			Numeric,
			"Continuous",
			Format( "m/d/y", 10 ),
			Input Format( "m/d/y" )
		),
		New Column( "Time",
			Numeric,
			"Continuous",
			Format( "h:m:s", 11, 0 ),
			Input Format( "h:m:s", 0 )
		),
		New Column( "Machine", Character, "Nominal" ),
		New Column( "ID", Numeric, "Continuous", Format( "Best", 12 ) ),
		New Column( "Row", Numeric, "Continuous", Format( "Best", 12 ) ),
		New Column( "SN", Character, "Nominal" )
	),
	Import Settings(
		End Of Line( CRLF, CR, LF ),
		End Of Field( Comma, CSV( 0 ) ),
		Strip Quotes( 1 ),
		Use Apostrophe as Quotation Mark( 0 ),
		Use Regional Settings( 0 ),
		Scan Whole File( 1 ),
		Treat empty columns as numeric( 0 ),
		CompressNumericColumns( 0 ),
		CompressCharacterColumns( 0 ),
		CompressAllowListCheck( 0 ),
		Labels( 0 ),
		Column Names Start( 1 ),
		Data Starts( 1 ),
		Lines To Read( "All" ),
		Year Rule( "20xx" )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 02 Apr 2018 03:45:56 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2018-04-02T03:45:56Z</dc:date>
    <item>
      <title>Concatenate</title>
      <link>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54264#M30660</link>
      <description>&lt;P&gt;I need to concatenate many comma delimmeted files without headers in them (so no column names) and maintain column order.&amp;nbsp; Is this possibble?&amp;nbsp; I have failed with Concatenate thus far.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Apr 2018 01:09:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54264#M30660</guid>
      <dc:creator>KST-CPT</dc:creator>
      <dc:date>2018-04-02T01:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate</title>
      <link>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54266#M30662</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11405"&gt;@KST-CPT&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Yes. It is possible. I would suggest you provide some sample files, so we could show you how to build a script that matches your needs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Apr 2018 01:20:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54266#M30662</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2018-04-02T01:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate</title>
      <link>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54269#M30664</link>
      <description>&lt;P&gt;Unfortunately I cannot provide any actual files.&amp;nbsp; However, I just created these 2 sample files that are the same format and a sample header file.&amp;nbsp; I know the column names, hence the header file, however, the files do not contain headers.&amp;nbsp; I have many many files and dozens of new ones are created daily.&amp;nbsp; I want to concatenate the files, maintaining column order and continuously appending the daily.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Apr 2018 02:00:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54269#M30664</guid>
      <dc:creator>KST-CPT</dc:creator>
      <dc:date>2018-04-02T02:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate</title>
      <link>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54271#M30666</link>
      <description>&lt;P&gt;Here is the input script that you can use to input the files with, and then once they are input, you can concatenate them all together, and JMP will match the column names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
	"&amp;lt;Place the path to the data table in here&amp;gt;",
	columns(
		New Column( "FileName", Character, "Nominal" ),
		New Column( "Date",
			Numeric,
			"Continuous",
			Format( "m/d/y", 10 ),
			Input Format( "m/d/y" )
		),
		New Column( "Time",
			Numeric,
			"Continuous",
			Format( "h:m:s", 11, 0 ),
			Input Format( "h:m:s", 0 )
		),
		New Column( "Machine", Character, "Nominal" ),
		New Column( "ID", Numeric, "Continuous", Format( "Best", 12 ) ),
		New Column( "Row", Numeric, "Continuous", Format( "Best", 12 ) ),
		New Column( "SN", Character, "Nominal" )
	),
	Import Settings(
		End Of Line( CRLF, CR, LF ),
		End Of Field( Comma, CSV( 0 ) ),
		Strip Quotes( 1 ),
		Use Apostrophe as Quotation Mark( 0 ),
		Use Regional Settings( 0 ),
		Scan Whole File( 1 ),
		Treat empty columns as numeric( 0 ),
		CompressNumericColumns( 0 ),
		CompressCharacterColumns( 0 ),
		CompressAllowListCheck( 0 ),
		Labels( 0 ),
		Column Names Start( 1 ),
		Data Starts( 1 ),
		Lines To Read( "All" ),
		Year Rule( "20xx" )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Apr 2018 03:45:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54271#M30666</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-04-02T03:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate</title>
      <link>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54454#M30778</link>
      <description>&lt;P&gt;Awesome,&amp;nbsp; I was renaming my columns after import.&amp;nbsp; You have the column names and formatting done during import, much easier, Thanks.&amp;nbsp; I was having trouble with changing the formats as well, this solved that problem too.&amp;nbsp; 2 for 1 deal =).&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 16:55:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Concatenate/m-p/54454#M30778</guid>
      <dc:creator>KST-CPT</dc:creator>
      <dc:date>2018-04-04T16:55:57Z</dc:date>
    </item>
  </channel>
</rss>

