<?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 Data table order is commingled in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689665#M87560</link>
    <description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have three FRF (txt style) files to be imported into JMP, and I had the following script to import and process the data. I have one description table that has three description items, which need to be assigned to the FRF data table in an ascending order. For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;z-ht_0.414 needs to be assigned to&amp;nbsp;&lt;SPAN&gt;ccf_23101106.FRF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;z-ht_0.464 needs to be assigned to&amp;nbsp;ccf_23101703.FRF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;z-ht_0.514 needs to be assigned to ccf_23101701.FRF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The problem of my script ends up opening ccf_23101703 later than&amp;nbsp;ccf_23101701. As a result, the&amp;nbsp;z-ht_0.514 is assigned to the second data table ccf_23101703 instead of the third data table&amp;nbsp;ccf_23101701. It shows that ccf_101703 is the data table window opened last, but in my script, ccf_101703 should be the second data table window opened. Can anyone help explain this weird thing and provide a solution to my question? I have copied my script below and attached&amp;nbsp;the raw data. Please let me know if you need further information. Thanks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//-----------------------------------------------------------------------------------------------------------------

Names Default To Here( 1 );
Clear Globals();
 
Description = New Table( "Description",
	Add Rows( 0 ),
	New Column( "Descriptioin",
		Character,
		set values(
			{
 
//==========================================================================
			// Manual input #1: the description of the FRF data (need to keep the colon)
			//==========================================================================
			"z-ht_0.414", "z-ht_0.464", "z-ht_0.514"}
		)
	)
);
FRF_file_num = N Rows( Description );
 
dtList = Multiple File Import(
	&amp;lt;&amp;lt;Set Folder( "E:\Reports\_ Software\JMP Learning\6 - FRF plotter for FEA\" ),
	&amp;lt;&amp;lt;Set Show Hidden( 0 ),
	&amp;lt;&amp;lt;Set Subfolders( 0 ),
	&amp;lt;&amp;lt;Set Name Filter
	//==========================================================================
	// Manual input #2: the name of the FRF data (need to keep the colon)
	//==========================================================================
	("
ccf_23101106.frf;
ccf_23101703.frf;
ccf_23101701.frf; 
"), 
 
	&amp;lt;&amp;lt;Set Name Enable( 1 ),
	&amp;lt;&amp;lt;Set Size Filter( {90190, 90190} ),
	&amp;lt;&amp;lt;Set Size Enable( 0 ),
	&amp;lt;&amp;lt;Set Date Filter( {3761729046.157, 3761730593.651} ),
	&amp;lt;&amp;lt;Set Date Enable( 0 ),
	&amp;lt;&amp;lt;Set Add File Name Column( 1 ),
	&amp;lt;&amp;lt;Set Add File Size Column( 0 ),
	&amp;lt;&amp;lt;Set Add File Date Column( 0 ),
	&amp;lt;&amp;lt;Set Import Mode( "CSVData" ),
	&amp;lt;&amp;lt;Set Charset( "Best Guess" ),
	&amp;lt;&amp;lt;Set Stack Mode( "Stack Similar" ),
	&amp;lt;&amp;lt;Set CSV Has Headers( 1 ),
	&amp;lt;&amp;lt;Set CSV Allow Numeric( 1 ),
	&amp;lt;&amp;lt;Set CSV First Header Line( 1 ),
	&amp;lt;&amp;lt;Set CSV Number Of Header Lines( 1 ),
	&amp;lt;&amp;lt;Set CSV First Data Line( 7 ),        // First row starts from row #7
	&amp;lt;&amp;lt;Set CSV EOF Comma( 0 ),
	&amp;lt;&amp;lt;Set CSV EOF Tab( 0 ),
	&amp;lt;&amp;lt;Set CSV EOF Space( 0 ),
	&amp;lt;&amp;lt;Set CSV EOF Spaces( 1 ),
	&amp;lt;&amp;lt;Set CSV EOF Other( "" ),
	&amp;lt;&amp;lt;Set CSV EOL CRLF( 1 ),
	&amp;lt;&amp;lt;Set CSV EOL CR( 1 ),
	&amp;lt;&amp;lt;Set CSV EOL LF( 1 ),
	&amp;lt;&amp;lt;Set CSV EOL Semicolon( 0 ),
	&amp;lt;&amp;lt;Set CSV EOL Other( "" ),
	&amp;lt;&amp;lt;Set CSV Quote( "\!"" ),
	&amp;lt;&amp;lt;Set CSV Escape( "" ),
	&amp;lt;&amp;lt;Set XML Method( "guess" ),
	&amp;lt;&amp;lt;Set XML Guess( "huge" ),
	&amp;lt;&amp;lt;Set XML Settings( XML Settings() ),
	&amp;lt;&amp;lt;Set JSON Method( "guess" ),
	&amp;lt;&amp;lt;Set JSON Guess( "huge" ),
	&amp;lt;&amp;lt;Set JSON Settings( JSON Settings() ),
	&amp;lt;&amp;lt;Set Import Callback( Empty() )
) &amp;lt;&amp;lt; Import Data;
 
//==========================================================================
// Process the raw FRF data table for each indivdual FRF data
//==========================================================================
 
For( i = 1, i &amp;lt;= FRF_file_num, i++,
	dtList[i] &amp;lt;&amp;lt; Set Window Size( 880, 400 );
	dtList[i] &amp;lt;&amp;lt; Move Window( 1600, 0 + i * 20 );
	Column( dtList[i], 1 ) &amp;lt;&amp;lt; setname( "Null" );
	Column( dtList[i], 2 ) &amp;lt;&amp;lt; setname( "Freq kHz" );
	Column( dtList[i], 3 ) &amp;lt;&amp;lt; setname( "Disp 1" );
	Column( dtList[i], 4 ) &amp;lt;&amp;lt; setname( "FRF Phase" );
	Column( dtList[i], 5 ) &amp;lt;&amp;lt; setname( "Disp 2" );
	Column( dtList[i], 6 ) &amp;lt;&amp;lt; setname( "Phase 2" );
	Column( dtList[i], 7 ) &amp;lt;&amp;lt; setname( "FRF Gain" );
	Column( dtList[i], 8 ) &amp;lt;&amp;lt; setname( "Description" ); 
 
	Nrow = N Rows( dtList[i] );
	For( j = 1, j &amp;lt;= Nrow, j++,
		dtList[i][j, 2] = dtList[i][j, 2] / 1000;
		dtList[i][j, 7] = 20 * Log10( dtList[i][j, 3] / dtList[i][1, 3] );
		dtList[i][j, 8] = Description[i, 1];
	);
 
	dtList[i]:Null &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Disp 1 &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Disp 2 &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Phase 2 &amp;lt;&amp;lt; Set Selected;
	dtList[i] &amp;lt;&amp;lt; Delete Columns();  
//Wait (2);
 
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Mon, 23 Oct 2023 19:38:21 GMT</pubDate>
    <dc:creator>TDK_Long</dc:creator>
    <dc:date>2023-10-23T19:38:21Z</dc:date>
    <item>
      <title>Data table order is commingled</title>
      <link>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689665#M87560</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have three FRF (txt style) files to be imported into JMP, and I had the following script to import and process the data. I have one description table that has three description items, which need to be assigned to the FRF data table in an ascending order. For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;z-ht_0.414 needs to be assigned to&amp;nbsp;&lt;SPAN&gt;ccf_23101106.FRF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;z-ht_0.464 needs to be assigned to&amp;nbsp;ccf_23101703.FRF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;z-ht_0.514 needs to be assigned to ccf_23101701.FRF&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The problem of my script ends up opening ccf_23101703 later than&amp;nbsp;ccf_23101701. As a result, the&amp;nbsp;z-ht_0.514 is assigned to the second data table ccf_23101703 instead of the third data table&amp;nbsp;ccf_23101701. It shows that ccf_101703 is the data table window opened last, but in my script, ccf_101703 should be the second data table window opened. Can anyone help explain this weird thing and provide a solution to my question? I have copied my script below and attached&amp;nbsp;the raw data. Please let me know if you need further information. Thanks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//-----------------------------------------------------------------------------------------------------------------

Names Default To Here( 1 );
Clear Globals();
 
Description = New Table( "Description",
	Add Rows( 0 ),
	New Column( "Descriptioin",
		Character,
		set values(
			{
 
//==========================================================================
			// Manual input #1: the description of the FRF data (need to keep the colon)
			//==========================================================================
			"z-ht_0.414", "z-ht_0.464", "z-ht_0.514"}
		)
	)
);
FRF_file_num = N Rows( Description );
 
dtList = Multiple File Import(
	&amp;lt;&amp;lt;Set Folder( "E:\Reports\_ Software\JMP Learning\6 - FRF plotter for FEA\" ),
	&amp;lt;&amp;lt;Set Show Hidden( 0 ),
	&amp;lt;&amp;lt;Set Subfolders( 0 ),
	&amp;lt;&amp;lt;Set Name Filter
	//==========================================================================
	// Manual input #2: the name of the FRF data (need to keep the colon)
	//==========================================================================
	("
ccf_23101106.frf;
ccf_23101703.frf;
ccf_23101701.frf; 
"), 
 
	&amp;lt;&amp;lt;Set Name Enable( 1 ),
	&amp;lt;&amp;lt;Set Size Filter( {90190, 90190} ),
	&amp;lt;&amp;lt;Set Size Enable( 0 ),
	&amp;lt;&amp;lt;Set Date Filter( {3761729046.157, 3761730593.651} ),
	&amp;lt;&amp;lt;Set Date Enable( 0 ),
	&amp;lt;&amp;lt;Set Add File Name Column( 1 ),
	&amp;lt;&amp;lt;Set Add File Size Column( 0 ),
	&amp;lt;&amp;lt;Set Add File Date Column( 0 ),
	&amp;lt;&amp;lt;Set Import Mode( "CSVData" ),
	&amp;lt;&amp;lt;Set Charset( "Best Guess" ),
	&amp;lt;&amp;lt;Set Stack Mode( "Stack Similar" ),
	&amp;lt;&amp;lt;Set CSV Has Headers( 1 ),
	&amp;lt;&amp;lt;Set CSV Allow Numeric( 1 ),
	&amp;lt;&amp;lt;Set CSV First Header Line( 1 ),
	&amp;lt;&amp;lt;Set CSV Number Of Header Lines( 1 ),
	&amp;lt;&amp;lt;Set CSV First Data Line( 7 ),        // First row starts from row #7
	&amp;lt;&amp;lt;Set CSV EOF Comma( 0 ),
	&amp;lt;&amp;lt;Set CSV EOF Tab( 0 ),
	&amp;lt;&amp;lt;Set CSV EOF Space( 0 ),
	&amp;lt;&amp;lt;Set CSV EOF Spaces( 1 ),
	&amp;lt;&amp;lt;Set CSV EOF Other( "" ),
	&amp;lt;&amp;lt;Set CSV EOL CRLF( 1 ),
	&amp;lt;&amp;lt;Set CSV EOL CR( 1 ),
	&amp;lt;&amp;lt;Set CSV EOL LF( 1 ),
	&amp;lt;&amp;lt;Set CSV EOL Semicolon( 0 ),
	&amp;lt;&amp;lt;Set CSV EOL Other( "" ),
	&amp;lt;&amp;lt;Set CSV Quote( "\!"" ),
	&amp;lt;&amp;lt;Set CSV Escape( "" ),
	&amp;lt;&amp;lt;Set XML Method( "guess" ),
	&amp;lt;&amp;lt;Set XML Guess( "huge" ),
	&amp;lt;&amp;lt;Set XML Settings( XML Settings() ),
	&amp;lt;&amp;lt;Set JSON Method( "guess" ),
	&amp;lt;&amp;lt;Set JSON Guess( "huge" ),
	&amp;lt;&amp;lt;Set JSON Settings( JSON Settings() ),
	&amp;lt;&amp;lt;Set Import Callback( Empty() )
) &amp;lt;&amp;lt; Import Data;
 
//==========================================================================
// Process the raw FRF data table for each indivdual FRF data
//==========================================================================
 
For( i = 1, i &amp;lt;= FRF_file_num, i++,
	dtList[i] &amp;lt;&amp;lt; Set Window Size( 880, 400 );
	dtList[i] &amp;lt;&amp;lt; Move Window( 1600, 0 + i * 20 );
	Column( dtList[i], 1 ) &amp;lt;&amp;lt; setname( "Null" );
	Column( dtList[i], 2 ) &amp;lt;&amp;lt; setname( "Freq kHz" );
	Column( dtList[i], 3 ) &amp;lt;&amp;lt; setname( "Disp 1" );
	Column( dtList[i], 4 ) &amp;lt;&amp;lt; setname( "FRF Phase" );
	Column( dtList[i], 5 ) &amp;lt;&amp;lt; setname( "Disp 2" );
	Column( dtList[i], 6 ) &amp;lt;&amp;lt; setname( "Phase 2" );
	Column( dtList[i], 7 ) &amp;lt;&amp;lt; setname( "FRF Gain" );
	Column( dtList[i], 8 ) &amp;lt;&amp;lt; setname( "Description" ); 
 
	Nrow = N Rows( dtList[i] );
	For( j = 1, j &amp;lt;= Nrow, j++,
		dtList[i][j, 2] = dtList[i][j, 2] / 1000;
		dtList[i][j, 7] = 20 * Log10( dtList[i][j, 3] / dtList[i][1, 3] );
		dtList[i][j, 8] = Description[i, 1];
	);
 
	dtList[i]:Null &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Disp 1 &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Disp 2 &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Phase 2 &amp;lt;&amp;lt; Set Selected;
	dtList[i] &amp;lt;&amp;lt; Delete Columns();  
//Wait (2);
 
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Mon, 23 Oct 2023 19:38:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689665#M87560</guid>
      <dc:creator>TDK_Long</dc:creator>
      <dc:date>2023-10-23T19:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data table order is commingled</title>
      <link>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689733#M87568</link>
      <description>&lt;P&gt;try adding&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;current data table() &amp;lt;&amp;lt; rerun formulas;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;after the input JSL for the txt file.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 19:43:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689733#M87568</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-10-23T19:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Data table order is commingled</title>
      <link>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689755#M87572</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for looking into my case. Your above suggestion seems not solving my problem. My problem is when I import multiple files into JMP, the importing action does not follow the order of the files that I list. For example, when I try to import the following files:&lt;/P&gt;&lt;P&gt;ccf_008, ccf_005, ccf_007, ccf_002 in this order, but JMP will automatically sort the names of the files and generate the data table windows in the this order: ccf_002, ccf_005, ccf_007, ccf_008, which is not the order I want. Is there anyway that I can keep the order of the files because I need to assign the description to the files respectively? If the order is messed up, all of the data will be mistakenly labeled. Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 21:31:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689755#M87572</guid>
      <dc:creator>TDK_Long</dc:creator>
      <dc:date>2023-10-23T21:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data table order is commingled</title>
      <link>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689765#M87575</link>
      <description>&lt;P&gt;If I am understanding the issue correctly, I forced the processing by inputting only one file at a time.&amp;nbsp; See my JSL below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//-----------------------------------------------------------------------------------------------------------------

Names Default To Here( 1 );
Clear Globals();
 
Description = New Table( "Description",
	Add Rows( 0 ),
	New Column( "Descriptioin",
		Character,
		set values(
			{
 
			//==========================================================================
			// Manual input #1: the description of the FRF data (need to keep the colon)
			//==========================================================================
			"z-ht_0.414", "z-ht_0.464", "z-ht_0.514"}
		)
	)
);
dtList = {};
FRF_file_num = N Rows( Description );
fileList = {"ccf_23101106.frf.txt", "ccf_23101703.frf.txt", "ccf_23101701.frf.txt"};
For Each( {file}, fileList,
	dt = Multiple File Import(
		&amp;lt;&amp;lt;Set Folder( "C:\Users\Jim\Documents\Discussion Group" ),
		&amp;lt;&amp;lt;Set Show Hidden( 0 ),
		&amp;lt;&amp;lt;Set Subfolders( 0 ),
		&amp;lt;&amp;lt;Set Name Filter//==========================================================================
		// Manual input #2: the name of the FRF data (need to keep the colon)
		//==========================================================================
		(file), 
 
		&amp;lt;&amp;lt;Set Name Enable( 1 ),
		&amp;lt;&amp;lt;Set Size Filter( {90190, 90190} ),
		&amp;lt;&amp;lt;Set Size Enable( 0 ),
		&amp;lt;&amp;lt;Set Date Filter( {3761729046.157, 3761730593.651} ),
		&amp;lt;&amp;lt;Set Date Enable( 0 ),
		&amp;lt;&amp;lt;Set Add File Name Column( 1 ),
		&amp;lt;&amp;lt;Set Add File Size Column( 0 ),
		&amp;lt;&amp;lt;Set Add File Date Column( 0 ),
		&amp;lt;&amp;lt;Set Import Mode( "CSVData" ),
		&amp;lt;&amp;lt;Set Charset( "Best Guess" ),
		&amp;lt;&amp;lt;Set Stack Mode( "Stack Similar" ),
		&amp;lt;&amp;lt;Set CSV Has Headers( 1 ),
		&amp;lt;&amp;lt;Set CSV Allow Numeric( 1 ),
		&amp;lt;&amp;lt;Set CSV First Header Line( 1 ),
		&amp;lt;&amp;lt;Set CSV Number Of Header Lines( 1 ),
		&amp;lt;&amp;lt;Set CSV First Data Line( 7 ),        // First row starts from row #7
		&amp;lt;&amp;lt;Set CSV EOF Comma( 0 ),
		&amp;lt;&amp;lt;Set CSV EOF Tab( 0 ),
		&amp;lt;&amp;lt;Set CSV EOF Space( 0 ),
		&amp;lt;&amp;lt;Set CSV EOF Spaces( 1 ),
		&amp;lt;&amp;lt;Set CSV EOF Other( "" ),
		&amp;lt;&amp;lt;Set CSV EOL CRLF( 1 ),
		&amp;lt;&amp;lt;Set CSV EOL CR( 1 ),
		&amp;lt;&amp;lt;Set CSV EOL LF( 1 ),
		&amp;lt;&amp;lt;Set CSV EOL Semicolon( 0 ),
		&amp;lt;&amp;lt;Set CSV EOL Other( "" ),
		&amp;lt;&amp;lt;Set CSV Quote( "\!"" ),
		&amp;lt;&amp;lt;Set CSV Escape( "" ),
		&amp;lt;&amp;lt;Set XML Method( "guess" ),
		&amp;lt;&amp;lt;Set XML Guess( "huge" ),
		&amp;lt;&amp;lt;Set XML Settings( XML Settings() ),
		&amp;lt;&amp;lt;Set JSON Method( "guess" ),
		&amp;lt;&amp;lt;Set JSON Guess( "huge" ),
		&amp;lt;&amp;lt;Set JSON Settings( JSON Settings() ),
		&amp;lt;&amp;lt;Set Import Callback( Empty() )
	) &amp;lt;&amp;lt; Import Data;
	Insert Into( dtList, dt );
);
//==========================================================================
// Process the raw FRF data table for each indivdual FRF data
//==========================================================================
 
For( i = 1, i &amp;lt;= FRF_file_num, i++,
	dtList[i] &amp;lt;&amp;lt; Set Window Size( 880, 400 );
	dtList[i] &amp;lt;&amp;lt; Move Window( 1600, 0 + i * 20 );
	Column( dtList[i], 1 ) &amp;lt;&amp;lt; setname( "Null" );
	Column( dtList[i], 2 ) &amp;lt;&amp;lt; setname( "Freq kHz" );
	Column( dtList[i], 3 ) &amp;lt;&amp;lt; setname( "Disp 1" );
	Column( dtList[i], 4 ) &amp;lt;&amp;lt; setname( "FRF Phase" );
	Column( dtList[i], 5 ) &amp;lt;&amp;lt; setname( "Disp 2" );
	Column( dtList[i], 6 ) &amp;lt;&amp;lt; setname( "Phase 2" );
	Column( dtList[i], 7 ) &amp;lt;&amp;lt; setname( "FRF Gain" );
	Column( dtList[i], 8 ) &amp;lt;&amp;lt; setname( "Description" ); 
 
	Nrow = N Rows( dtList[i] );
	For( j = 1, j &amp;lt;= Nrow, j++,
		dtList[i][j, 2] = dtList[i][j, 2] / 1000;
		dtList[i][j, 7] = 20 * Log10( dtList[i][j, 3] / dtList[i][1, 3] );
		dtList[i][j, 8] = Description[i, 1];
	);
 
	dtList[i]:Null &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Disp 1 &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Disp 2 &amp;lt;&amp;lt; Set Selected;
	dtList[i]:Phase 2 &amp;lt;&amp;lt; Set Selected;
	dtList[i] &amp;lt;&amp;lt; Delete Columns();  
//Wait (2);
 
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2023 22:57:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689765#M87575</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-10-23T22:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data table order is commingled</title>
      <link>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689770#M87576</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perfect. It is what I am looking for. Learned a lot from your script. Thanks for the quick turnaround.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 23:26:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Data-table-order-is-commingled/m-p/689770#M87576</guid>
      <dc:creator>TDK_Long</dc:creator>
      <dc:date>2023-10-23T23:26:36Z</dc:date>
    </item>
  </channel>
</rss>

