<?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: Invalid Row Number Error in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/227942#M45228</link>
    <description>When you create the new table, it has 0 rows. You need to add some rows to it before you can write data to the first row.</description>
    <pubDate>Wed, 02 Oct 2019 18:05:42 GMT</pubDate>
    <dc:creator>MichelleG</dc:creator>
    <dc:date>2019-10-02T18:05:42Z</dc:date>
    <item>
      <title>RE: Invalid Row Number Error</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60308#M32878</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was just wondering about this error I got when I ran my script:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Invalid Row Number{92} in access or evaluation of 'Subscript' , colInstructions[q]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The value of q never reaches 92 so I'm not sure where that number came from, or is 92 in relation to something else? Just for some background information I created a new column to which I'm assigning the value of a cell from another data table (colInstructions[q]).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 10:12:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60308#M32878</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-06-14T10:12:59Z</dc:date>
    </item>
    <item>
      <title>RE: Invalid Row Number Error</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60310#M32880</link>
      <description>&lt;P&gt;Make sure the cell is fully qualified with the table name and column name.&amp;nbsp; If both tables have the same column name you might get this error, i.e. one table doesn't have 92 rows.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1 = data table("Table 1");
dt2 = data table("Table 2");

column(dt2, "Instructions")[92] = column(dt1, "Instructions")[14];&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jun 2018 11:58:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60310#M32880</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-06-14T11:58:09Z</dc:date>
    </item>
    <item>
      <title>RE: Invalid Row Number Error</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60312#M32882</link>
      <description>&lt;P&gt;Ok thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both tables don't have the same columns but I have another question related to creating new columns: do you have to specify how many rows the column has when you create a new column and how would you do this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 12:17:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60312#M32882</guid>
      <dc:creator>Jaz</dc:creator>
      <dc:date>2018-06-14T12:17:45Z</dc:date>
    </item>
    <item>
      <title>RE: Invalid Row Number Error</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60314#M32884</link>
      <description>&lt;P&gt;If you add a new column to an existing data table, the column will have the same number of rows as the data table the new column is being added to.&amp;nbsp; &amp;nbsp;JMP data tables do not have different number of rows for different columns.&amp;nbsp; They may have missing values or blank values for character columns, but all columns will have the same number of rows.&amp;nbsp; If you need to add additional rows, you can use "Add Rows()" function.&amp;nbsp; See:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index==&amp;gt;Data Table==&amp;gt;Add Rows&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 12:43:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/60314#M32884</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-06-14T12:43:47Z</dc:date>
    </item>
    <item>
      <title>RE: Invalid Row Number Error</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/227941#M45227</link>
      <description>&lt;P&gt;I am stuck with a similar problem.&lt;/P&gt;&lt;P&gt;I have a string in the list and trying to assign it to the row of a data table. I get an erroe saying - "Cannot set value for column beacuse row number is invalid".&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Param = {};
Param = Concat items({A, B, C,D}, " ");

dt = New Table( "RAWDATA" );

	dt&amp;lt;&amp;lt; New Column( "Line", Character);
Column(dt,"Line")[1] = Param;

	&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Oct 2019 17:26:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/227941#M45227</guid>
      <dc:creator>ENTHU</dc:creator>
      <dc:date>2019-10-02T17:26:45Z</dc:date>
    </item>
    <item>
      <title>RE: Invalid Row Number Error</title>
      <link>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/227942#M45228</link>
      <description>When you create the new table, it has 0 rows. You need to add some rows to it before you can write data to the first row.</description>
      <pubDate>Wed, 02 Oct 2019 18:05:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/RE-Invalid-Row-Number-Error/m-p/227942#M45228</guid>
      <dc:creator>MichelleG</dc:creator>
      <dc:date>2019-10-02T18:05:42Z</dc:date>
    </item>
  </channel>
</rss>

