<?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: Copy column subset or cell range from table to table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62637#M33777</link>
    <description>Something didn't work for me with the example.&lt;BR /&gt;But, never mind, I got the idea and it seemed to work with running a test on few input files..&lt;BR /&gt;Seems like I complicated things unnecessarily while a straight forward way was under my nose.&lt;BR /&gt;Thanks for your patience&lt;BR /&gt;</description>
    <pubDate>Thu, 12 Jul 2018 18:28:11 GMT</pubDate>
    <dc:creator>RonB</dc:creator>
    <dc:date>2018-07-12T18:28:11Z</dc:date>
    <item>
      <title>Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62494#M33685</link>
      <description>&lt;P&gt;I have two data tables. Some columns on table2 are identical to columns table1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wasnt to copy the data of the identical columns from table2 to table1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That means, of course, that (1) table1 will be expanded with the number or rows in table2 and, (2) there will be missing data in table1. That's OK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My issue is how to copy the data from table2 to table1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E.g. - both tables have column "NAME". Table1 has 1000 rows, table2 has 2000 rows.&lt;/P&gt;&lt;P&gt;The results will be: table1 with 3000 rows, and "NAME" on table1 will be a "concatenation" of both NAME columns. Other columns in table1 will have 2000 missing/empty data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, in reality, tables are much larger and there are 10-20 identical columns (out of ~100). I will deal with it once I figure out the basic function. I mention it in case there's an issue with such size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:26:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62494#M33685</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-11T07:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62499#M33688</link>
      <description>&lt;P&gt;JMP will concatenate data tables using&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Tables==&amp;gt;Concatenate&lt;/P&gt;
&lt;P&gt;It will line up the columns by column name when it concatenates.&amp;nbsp; Missing values will automatically be added in the rows for columns that do not appear in one or the other data table.&lt;/P&gt;
&lt;P&gt;The Concatenation Platform keeps the Name in tact for matching columns, and just adds new column names for columns that were not in the base data table.&lt;/P&gt;
&lt;P&gt;For documentation, see:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Help==&amp;gt;Books==&amp;gt;Using JMP&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 10:17:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62499#M33688</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-11T10:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62502#M33691</link>
      <description>Thanks. I did thought about it. However, I need to do it with a script because I have many such files and the order of the columns changes from one to one.&lt;BR /&gt;&lt;BR /&gt;I'd like to figure out some code that'll do it.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jul 2018 11:12:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62502#M33691</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-11T11:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62503#M33692</link>
      <description>&lt;P&gt;You can have JMP generate the code for you.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run the&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Tables==&amp;gt;Concatenate&lt;/P&gt;
&lt;P&gt;interactively, and then in the new data table, go into the Tables Panel on the left side of the data table and right click on the "Source" entry, and select "Edit".&amp;nbsp; There you will see the JSL required to concatenate the files together.&lt;/P&gt;
&lt;P&gt;The JSL is basically&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1=data table(&amp;lt;your first table&amp;gt;);
dt2=data table(&amp;lt;your second table&amp;gt;);

dt1 = dt1 &amp;lt;&amp;lt; concatenate( dt2, Append to First Table(1));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jul 2018 11:23:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62503#M33692</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-11T11:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62504#M33693</link>
      <description>Thanks.&lt;BR /&gt;&lt;BR /&gt;Concatenate function won't do because I need to do it only for columns that are identical in both tables, skipping all others.&lt;BR /&gt;&lt;BR /&gt;I tried storing the source column data in a matrix/list and than setting the valuse on the target column (the second table) using subscription [I,j] but I guess I'm missing something.&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jul 2018 11:35:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62504#M33693</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-11T11:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62505#M33694</link>
      <description>&lt;P&gt;Concatenation does not egnore non matching columns.&amp;nbsp; Here is a sample using the Big Class and Big Class Families, sample data tables.&amp;nbsp; Please note, that the Big Class data table ends up will all of the columns that the Big Class Families has that are not in the original Big Class data table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt1 = Open( "$SAMPLE_DATA/big class.jmp" );
dt2 = Open( "$SAMPLE_DATA/big class families.jmp" );

dt1 &amp;lt;&amp;lt; concatenate( dt2, Append to First Table( 1 ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jul 2018 11:43:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62505#M33694</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-11T11:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62526#M33711</link>
      <description>Thanks again. Unfortunately, concatenate won't do due to the bizzar nature of my data sets.&lt;BR /&gt;&lt;BR /&gt;I need to concatenate only certain columns, ignoring the test.&lt;BR /&gt;&lt;BR /&gt;I can always loop through all rows in the source table and insert rows in the target tables and than set column value one by one. But I'm afraid it'll hog CPU - my script will process over 100 files with dozens of columns and thousands of rows. Besides, it's not an elegant solution, albeit probably inevitable.&lt;BR /&gt;&lt;BR /&gt;I'll simplify my question.&lt;BR /&gt;&lt;BR /&gt;Can I do something like that?&lt;BR /&gt;&lt;BR /&gt;Column(dt, i)[from,to] = list or matrix of values&lt;BR /&gt;&lt;BR /&gt;Thanks for you patience,&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jul 2018 14:41:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62526#M33711</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-11T14:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62528#M33713</link>
      <description>&lt;P&gt;Don't give up on the builtin functions, like Tables-&amp;gt;Concatenate so quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you only want the columns that have&amp;nbsp;the same name between two tables, you can use &amp;nbsp;Tables-&amp;gt;Subset to create two tables with only those columns from each table and then concatenate those two tables.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2018 14:52:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62528#M33713</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-07-11T14:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62531#M33715</link>
      <description>OK. Good encouragement.&lt;BR /&gt;&lt;BR /&gt;Table1 has columns a b c d e, table2 has columns x y e z a u v. I want to concatenate to table1 only columns e a from table2. How would you go about doing that?&lt;BR /&gt;&lt;BR /&gt;If I understand you, I need to create table2.1 with columns e a, than reorder them to be a e, and concatenate table2.1 to table1?&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jul 2018 15:04:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62531#M33715</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-11T15:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62533#M33717</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12234"&gt;@RonB&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BR /&gt;If I understand you, I need to create table2.1 with columns e a, than reorder them to be a e, and concatenate table2.1 to table1?&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You've got it, no need to reorder the columns though. Tables-&amp;gt;Concatenate matches on column name, not position.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Subset relies on column selection, so you need to select the columns that are in common between the two tables. But that's easy because you can just get all the column names from table1&amp;nbsp;and select that whole list against table2. Any that don't exist will get ignored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an example using two of the sample data tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;bc = Open( "$SAMPLE_DATA\Big Class.jmp" );
fit = Open( "$SAMPLE_DATA\Fitness.jmp" );

fit_cols = fit &amp;lt;&amp;lt; get column names;

bc &amp;lt;&amp;lt; select columns( fit_cols );

sub_bc = bc &amp;lt;&amp;lt; Subset( All rows, Selected columns only( 1 ) );

fit &amp;lt;&amp;lt; Concatenate( sub_bc );

//if you don't want a new table you can use "Append to first table"

fit &amp;lt;&amp;lt; Concatenate( sub_bc, Append to first table );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 11 Jul 2018 15:31:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62533#M33717</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-07-11T15:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62535#M33719</link>
      <description>I'll give it a try and report back (may take a while due to unrelated circumstances).&lt;BR /&gt;&lt;BR /&gt;Many tx&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jul 2018 16:11:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62535#M33719</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-11T16:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62606#M33766</link>
      <description>&lt;P&gt;Worked. Many thanks. Now I just have to figure out how to copy the non-matching columns but I think I can manage.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 14:41:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62606#M33766</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-12T14:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62608#M33768</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12234"&gt;@RonB&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Now I just have to figure out how to copy the non-matching columns but I think I can manage.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Non-matching columns from which table? The example above keeps all the columns from the Fitness table and concatenates only the columns that have the same name from Big Class. It does this by only subsetting Big Class to get the columns with the same names and then concatenating that to Fitness (which still has all of its columns).&amp;nbsp;There shouldn't be any work to keep the non-matching columns.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 14:55:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62608#M33768</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-07-12T14:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62617#M33769</link>
      <description>Yes, I understand that. But the data structure I'm dealing with requires to copy also columns in Big Class that do not have the same name in Fitness. I.e., these columns will be "vertically concatenated" to the output table as new columns. These columns will begin with missing data (as many rows as are in Fitness) followed by the data from Big Class.&lt;BR /&gt;I think I can do it by first adding to Fitness new columns with all the names in Big Class that are different. Than use the same method you showed me, subsetting Big Class with only these columns and doing the concatenation.&lt;BR /&gt;It's a lot of work but I see no other way to deal with the large number of tables and columns I have.&lt;BR /&gt;Thanks yet again&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jul 2018 15:35:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62617#M33769</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-12T15:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62619#M33770</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12234"&gt;@RonB&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes, I understand that. But the data structure I'm dealing with requires to copy also columns in Big Class that do not have the same name in Fitness. I.e., these columns will be "vertically concatenated" to the output table as new columns. These columns will begin with missing data (as many rows as are in Fitness) followed by the data from Big Class.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How is this different from simply concatenating the two tables together to begin with? Doing that you'll end up with a table with all the rows and all the columns from both tables. The columns that don't have matching names in both tables will be empty for the rows&amp;nbsp;that didn't have those columns originally.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's stop talking abstractly and be more concrete. Here are two tables:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table1&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table2&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;6&lt;/TD&gt;
&lt;TD&gt;6&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;6&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using Tables-&amp;gt;Concatenate on these two tables, you'll end up with this table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table3&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;1&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;•&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;•&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;3&lt;/TD&gt;
&lt;TD&gt;•&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;TD&gt;•&lt;/TD&gt;
&lt;TD&gt;4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;TD&gt;•&lt;/TD&gt;
&lt;TD&gt;5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;6&lt;/TD&gt;
&lt;TD&gt;6&lt;/TD&gt;
&lt;TD&gt;•&lt;/TD&gt;
&lt;TD&gt;6&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The way I interpret your description above makes me think that's the table you want. If it's not, I'm sorry I've misunderstood your requirement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2018 16:39:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62619#M33770</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-07-12T16:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Copy column subset or cell range from table to table</title>
      <link>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62637#M33777</link>
      <description>Something didn't work for me with the example.&lt;BR /&gt;But, never mind, I got the idea and it seemed to work with running a test on few input files..&lt;BR /&gt;Seems like I complicated things unnecessarily while a straight forward way was under my nose.&lt;BR /&gt;Thanks for your patience&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jul 2018 18:28:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Copy-column-subset-or-cell-range-from-table-to-table/m-p/62637#M33777</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2018-07-12T18:28:11Z</dc:date>
    </item>
  </channel>
</rss>

