<?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 to call multiple text file to extract data in a single data table? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11052#M10629</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Always check the log window for messages.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Show(lsl, usl, i);&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;after the two nested for-loops and make sure the values make sense.&amp;nbsp; I'm pretty sure "i" will be 3 and that might not make sense when used in the where statement.&amp;nbsp; Does dt2 have at least 3 rows?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that doesn't help, and no one else chimes in, call Tech Support.&amp;nbsp; I'm out of my depth on the variability platform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2015 14:12:55 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2015-03-02T14:12:55Z</dc:date>
    <item>
      <title>How to call multiple text file to extract data in a single data table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11049#M10626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have extracted the useful data from one text file into a new data table using JMP script. But, how to extract data from 3-4 text file using script into a same new data table? Please suggest me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Feb 2015 17:22:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11049#M10626</guid>
      <dc:creator>kaushik_pushpen</dc:creator>
      <dc:date>2015-02-22T17:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to call multiple text file to extract data in a single data table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11050#M10627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you used File-&amp;gt;Open-&amp;gt;TextFile to import a CSV, for example, there should be a script in the imported file that you can use/modify to import another file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use JMP's Table-&amp;gt;Concatenate to combine tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="8076_import.png" style="width: 308px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1248iB9A5229C493CD392/image-size/medium?v=v2&amp;amp;px=400" role="button" title="8076_import.png" alt="8076_import.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14246360699344063 jive_text_macro" jivemacro_uid="_14246360699344063"&gt;&lt;BR /&gt;&lt;P&gt;aa = Open( "C:\Users\User\Desktop\a.csv" );&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;bb = Open( "C:\Users\User\Desktop\b.csv" );&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;cc = aa &amp;lt;&amp;lt; Concatenate( bb );&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Close( aa, "nosave" );&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Close( bb, "nosave" );&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="8077_imported.png" style="width: 760px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1249i65987FDF0BE436CD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="8077_imported.png" alt="8077_imported.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2016 22:37:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11050#M10627</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2016-10-18T22:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to call multiple text file to extract data in a single data table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11051#M10628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Craige,&lt;/P&gt;&lt;P&gt;Thanks for the previous answer.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I am running the following variability script, but it is not showing the result. Please check the code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt1 = open("C:\Users\llenovo\Desktop\RAW1.jmp");&lt;/P&gt;&lt;P&gt;dt2 = open("C:\Users\llenovo\Desktop\Parameters.jmp");&lt;/P&gt;&lt;P&gt;dt3 = dt1&amp;lt;&amp;lt;summary(group(ParameterId, USL, LSL));&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;=2, i++,&lt;/P&gt;&lt;P&gt;&amp;nbsp; for(k = 2, k&amp;lt;=nrow(dt3), k++,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(:column(dt2, 1)&lt;I&gt;) == column(dt3, 1)&lt;K&gt;,&lt;/K&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; usl = column(dt3, 2)&lt;K&gt;;&lt;/K&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lsl = column(dt3, 3)&lt;K&gt;;&lt;/K&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; ));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dt1 &amp;lt;&amp;lt; Variability Chart(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Y( :MeasuredValue ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; X( :EntryDate, :LotID, :WaferNo ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Analysis Type( Name( "Choose best analysis (EMS REML Bayesian)" ) ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Std Dev Chart( 0 ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; where(:ParameterId == Eval((char(column(dt2, 1)&lt;I&gt;)))),&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SendToReport(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dispatch(&lt;/P&gt;&lt;P&gt;&amp;nbsp; {"Variability Chart for MeasuredValue"},&lt;/P&gt;&lt;P&gt;&amp;nbsp; "",&lt;/P&gt;&lt;P&gt;&amp;nbsp; NomAxisBox,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Rotated Tick Labels( 1 )&lt;/P&gt;&lt;P&gt;&amp;nbsp; ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dispatch(&lt;/P&gt;&lt;P&gt;&amp;nbsp; {"Variability Chart for MeasuredValue"},&lt;/P&gt;&lt;P&gt;&amp;nbsp; "",&lt;/P&gt;&lt;P&gt;&amp;nbsp; NomAxisBox( 2 ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Rotated Tick Labels( 1 )&lt;/P&gt;&lt;P&gt;&amp;nbsp; ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dispatch(&lt;/P&gt;&lt;P&gt;&amp;nbsp; {"Variability Chart for MeasuredValue"},&lt;/P&gt;&lt;P&gt;&amp;nbsp; "",&lt;/P&gt;&lt;P&gt;&amp;nbsp; NomAxisBox( 3 ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Rotated Tick Labels( 1 )&lt;/P&gt;&lt;P&gt;&amp;nbsp; ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dispatch(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {"Variability Chart for MeasuredValue"},&lt;/P&gt;&lt;P&gt;&amp;nbsp; "2",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ScaleBox,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {Min( 10 ), Max( 500 ), Inc( 50 ),Minor Ticks( 2 ), &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Add Ref Line( usl, Solid, {255, 0, 0}, "lsllabel" ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Add Ref Line( lsl, Solid, {255, 0, 0}, "usllabel" ), Show Major Grid( 1 ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Show Minor Grid( 1 )}&lt;/P&gt;&lt;P&gt;),&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 12:59:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11051#M10628</guid>
      <dc:creator>kaushik_pushpen</dc:creator>
      <dc:date>2015-03-02T12:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to call multiple text file to extract data in a single data table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11052#M10629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Always check the log window for messages.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Show(lsl, usl, i);&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;after the two nested for-loops and make sure the values make sense.&amp;nbsp; I'm pretty sure "i" will be 3 and that might not make sense when used in the where statement.&amp;nbsp; Does dt2 have at least 3 rows?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that doesn't help, and no one else chimes in, call Tech Support.&amp;nbsp; I'm out of my depth on the variability platform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 14:12:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-call-multiple-text-file-to-extract-data-in-a-single-data/m-p/11052#M10629</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2015-03-02T14:12:55Z</dc:date>
    </item>
  </channel>
</rss>

