<?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: Trying to create a column and fill it with a formula but I get an error. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667601#M85575</link>
    <description>&lt;P&gt;I should have pointed out -- to go from a column reference to a row-value within a formula, put in a [] after the column reference&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column( 1)[] + Column( 2 )[]&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 11 Aug 2023 20:07:45 GMT</pubDate>
    <dc:creator>ErraticAttack</dc:creator>
    <dc:date>2023-08-11T20:07:45Z</dc:date>
    <item>
      <title>Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667407#M85548</link>
      <description>&lt;LI-SPOILER&gt;Hi, I can make the script to fill the new column created.&lt;BR /&gt;&lt;BR /&gt;This is the error I get:&lt;BR /&gt;&amp;nbsp;Has anyone an idea of whats wrong here?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Formula Interrupted&lt;BR /&gt;Cannot convert argument to a number [or matrix] at row 1 in access or evaluation of 'Subtract' , Column( j ) - /*###*/Column( j + 1 ) /*###*/&lt;BR /&gt;Formula evaluation errors have been ignored&lt;/LI-SPOILER&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For (j=3, j&amp;lt;=10, j=j+2,
	
	ColLen=Length(Char(Column name (j)));
	ColName=Left (Char(Column Name(j)),ColLen -5);
	NewCol=Substr(ColName,6);
	
	New Column(
		"Delta: "||NewCol,
		Numeric,	
		Formula (
			(Column (j)- Column(j+1))
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 01:41:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667407#M85548</guid>
      <dc:creator>CrownofTears</dc:creator>
      <dc:date>2023-08-11T01:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667418#M85549</link>
      <description>&lt;P&gt;JSL uses dynamic scope -- I believe that you are working under the implicit assumption of lexical scope (which most programming languages use).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because JSL uses dynamic scope, the scope-resolution for the name &lt;CODE class=" language-jsl"&gt;j&lt;/CODE&gt; is done at&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;runtime&lt;/EM&gt;&lt;/STRONG&gt;, and when the formula is computing the name &lt;CODE class=" language-jsl"&gt;j&lt;/CODE&gt; is no longer in scope, thus it errors out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get around this, you can pre-evaluate parts of the code so that JMP doesn't have a variable to lookup within the column formula:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( j = 3, j &amp;lt;= 10, j = j + 2, 
	
	ColLen = Length( Char( Column Name( j ) ) );
	ColName = Left( Char( Column Name( j ) ), ColLen - 5 );
	NewCol = Substr( ColName, 6 );
	
	Eval( Eval Expr(
	New Column( "Delta: " || NewCol, Numeric, Formula( (Column( Expr( j ) ) - Column( Expr( j + 1 ) )) ) );
	) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 05:42:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667418#M85549</guid>
      <dc:creator>ErraticAttack</dc:creator>
      <dc:date>2023-08-11T05:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667472#M85554</link>
      <description>&lt;P&gt;It's because Column() is a reference to the column itself and not the values in the column.&amp;nbsp; I know how to do what you want in an ugly way.&amp;nbsp; The following script will work in the meantime until someone posts a prettier solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
For( j = 3, j &amp;lt;= 10, j = j + 2, 
	
	ColLen = Length( Char( Column Name( j ) ) );
	ColName = Left( Char( Column Name( j ) ), ColLen - 5 );
	NewCol = Substr( ColName, 6 );
	
	Eval(
		Parse(
			"New Column( \!"Delta: " || NewCol || "\!",
				Numeric,
				Formula(
				
					:\!"" ||
			(Column( j ) &amp;lt;&amp;lt; Get Name) || "\!"n - :\!"" || (Column( j + 1 ) &amp;lt;&amp;lt; Get Name) || "\!"n
					))"
		)
	);
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 13:25:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667472#M85554</guid>
      <dc:creator>mmarchandTSI</dc:creator>
      <dc:date>2023-08-11T13:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667520#M85556</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/47878"&gt;@mmarchandTSI&lt;/a&gt;&amp;nbsp;, I agree,&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Formula(Column( ...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;won't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How about using Substitute:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( j = 3, j &amp;lt;= 10, j = j + 2, 
	
	ColLen = Length( Char( Column Name( j ) ) );
	ColName = Left( Char( Column Name( j ) ), ColLen - 5 );
	NewCol = Substr( ColName, 6 );
	
	Eval(Substitute(Expr(
	New Column( "Delta: " || NewCol, Numeric, Formula( (__colA__ - __colB__) ) );
	),Expr(__colA__),Name Expr(As Column(j)),Expr(__colB__),Name Expr(As Column(j+1)) ))
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 16:11:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667520#M85556</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-08-11T16:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667523#M85557</link>
      <description>&lt;P&gt;Good post regarding this topic is &lt;LI-MESSAGE title="Insert one expression into another using Eval Insert, Eval Expr, Parse, and Substitute" uid="48998" url="https://community.jmp.com/t5/JSL-Cookbook-Archived/Insert-one-expression-into-another-using-Eval-Insert-Eval-Expr/m-p/48998#U48998" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; . In your case you do need a bit more complicated solution as you are using column indices instead of column names if you want to have formulas (most of the time I would suggest using names instead of indices). Most of the time I use Eval(EvalInsert()) but substitute is also good option&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(3),
	Compress File When Saved(1),
	New Column("Column 1", Numeric, "Continuous", Format("Best", 12), Set Values([1, 2, 3])),
	New Column("Column 2", Numeric, "Continuous", Format("Best", 12), Set Values([2, 3, 4])),
	New Column("Column 3", Numeric, "Continuous", Format("Best", 12), Set Values([3, 4, 5])),
	New Column("Column 4", Numeric, "Continuous", Format("Best", 12), Set Values([4, 5, 6])),
	New Column("Column 5", Numeric, "Continuous", Format("Best", 12), Set Values([6, 7, 8]))
);

For(j = 1, j &amp;lt; 5, j = j + 2,
	// ColLen = Length(Char(Column Name(j)));
	// ColName = Left(Char(Column Name(j)), ColLen - 6);
	// NewCol = Substr(ColName, 6);
	new_col = Word(2, Column(dt, j) &amp;lt;&amp;lt; get name, " ");
	
	Eval(Eval Expr(
		New Column("Delta: " || new_col, Numeric, Formula(
			Expr(NameExpr(AsColumn(j))) - Expr(NameExpr(AsColumn(j + 1)))
		))
	));
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Some additional functions/messages that might be of interest to you: &amp;lt;&lt;A href="https://www.jmp.com/support/help/en/17.0/#page/jmp/data-table-messages.shtml?os=win&amp;amp;source=application#ww1919058" target="_blank" rel="noopener"&gt;&amp;lt; Get Column Names&lt;/A&gt;, &lt;A href="https://www.jmp.com/support/help/en/17.0/#page/jmp/character-functions-2.shtml?os=win&amp;amp;source=application#ww8107571" target="_blank" rel="noopener"&gt;Word()&lt;/A&gt; (search also for Words(), Item() and Items() from scripting index), &lt;A href="https://www.jmp.com/support/help/en/17.0/#page/jmp/conditional-and-logical-functions.shtml?os=win&amp;amp;source=application#ww10169967" target="_blank" rel="noopener"&gt;For Each()&lt;/A&gt; (if you have JMP16+)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 16:34:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667523#M85557</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-08-11T16:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667557#M85564</link>
      <description>&lt;P&gt;After fiddling around a bit&lt;BR /&gt;- esp: wondering why #1 doesn't give the expected result:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$Sample_data/iris.jmp" );
cols = {Sepal length,Sepal width, Petal length};

i = 2; 
Eval( Eval Expr( dt &amp;lt;&amp;lt; New Column( "new1", Formula( As Column( Expr( i ) ) ) ) ) ); //works but the formula is corrupted
Eval( Eval Expr( dt &amp;lt;&amp;lt; New Column( "new2", Formula( As Column( Expr( Column(i) ) ) ) ) ) );
Eval( Eval Expr( dt &amp;lt;&amp;lt; New Column( "new3", Formula( As Column( Expr( Char( cols[i] ) ) ) ))) );
Eval(Substitute(Expr(dt &amp;lt;&amp;lt; New Column( "new4", Formula( __col__ ) )),Expr(__col__),Name Expr(As Column(i)) ));
Eval(Eval Expr(dt &amp;lt;&amp;lt; New Column("new5", Formula(Expr(NameExpr(AsColumn(i)))))));

// new:
Eval( Eval Expr( dt &amp;lt;&amp;lt; New Column( "new6", Formula( As Column( dt, Expr( i ) ) ) ) ) ); &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;... I found a new variant which doesn't need the enclosing &lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;Name Expr&lt;/STRONG&gt;&lt;/FONT&gt; to make it work *)&lt;BR /&gt;Interesting ...&lt;BR /&gt;&lt;BR /&gt;*) work - &lt;A href="https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667567/highlight/true#M85569" target="_blank"&gt;till Jmp is closed and started again&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:36:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667557#M85564</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-08-11T19:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667562#M85566</link>
      <description>&lt;P&gt;Not working :(&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:12:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667562#M85566</guid>
      <dc:creator>CrownofTears</dc:creator>
      <dc:date>2023-08-11T19:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667563#M85567</link>
      <description>&lt;P&gt;Just As Column() instead of column worked!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:21:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667563#M85567</guid>
      <dc:creator>CrownofTears</dc:creator>
      <dc:date>2023-08-11T19:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667564#M85568</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Just As Column() instead of column worked!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:21:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667564#M85568</guid>
      <dc:creator>CrownofTears</dc:creator>
      <dc:date>2023-08-11T19:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667567#M85569</link>
      <description>&lt;P&gt;Seems to work "once" (the values are OK)&amp;nbsp; - but (at least for my test case) variant #1 reports an error with the formula when you open it afterwards:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1691781905300.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55712i8CFA82CB40DACF7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1691781905300.png" alt="hogi_0-1691781905300.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Variant # 6 seems to solve this issue:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1691782023921.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55713i7DD07CFAC3C20864/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1691782023921.png" alt="hogi_1-1691782023921.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but it will definitely fail once Jmp is closed and forgets what &lt;FONT face="courier new,courier"&gt;dt&lt;/FONT&gt; means ....&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:28:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667567#M85569</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-08-11T19:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667568#M85570</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/49136"&gt;@CrownofTears&lt;/a&gt;, Based on your original JSL:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( j = 3, j &amp;lt;= 10, j = j + 2, 
	
	ColLen = Length( Char( Column Name( j ) ) );
	ColName = Left( Char( Column Name( j ) ), ColLen - 5 );
	NewCol = Substr( ColName, 6 );
	
	Eval(
		Eval Expr(
			New Column( "Delta: " || NewCol,
				Numeric,
				Formula( (As Column( Expr( Column Name( j ) ) ) - As Column( Expr( Column Name( j + 1 ) ) )) )
			)
		)
	);
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I like the clean As Column("column name") functions, and it's not ugly like my Eval( Parse(...) ) solution.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:40:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667568#M85570</guid>
      <dc:creator>mmarchandTSI</dc:creator>
      <dc:date>2023-08-11T19:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667600#M85574</link>
      <description>&lt;P&gt;I should have pointed out that to go from column reference to row-value, simply put in a &lt;CODE class=" language-jsl"&gt;[]&lt;/CODE&gt;.&amp;nbsp; The following should work:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( j = 3, j &amp;lt;= 10, j = j + 2, 
	
	ColLen = Length( Char( Column Name( j ) ) );
	ColName = Left( Char( Column Name( j ) ), ColLen - 5 );
	NewCol = Substr( ColName, 6 );
	
	Eval( Eval Expr(
	New Column( "Delta: " || NewCol, Numeric, Formula( (Column( Expr( j ) )[] - Column( Expr( j + 1 ) )[]) ) );
	) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 20:06:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667600#M85574</guid>
      <dc:creator>ErraticAttack</dc:creator>
      <dc:date>2023-08-11T20:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667601#M85575</link>
      <description>&lt;P&gt;I should have pointed out -- to go from a column reference to a row-value within a formula, put in a [] after the column reference&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column( 1)[] + Column( 2 )[]&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 20:07:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667601#M85575</guid>
      <dc:creator>ErraticAttack</dc:creator>
      <dc:date>2023-08-11T20:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to create a column and fill it with a formula but I get an error.</title>
      <link>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667607#M85577</link>
      <description>&lt;P&gt;Cool trick :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column(1)[] &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;instead of&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Column(1)[row()] &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Aug 2023 20:40:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Trying-to-create-a-column-and-fill-it-with-a-formula-but-I-get/m-p/667607#M85577</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-08-11T20:40:28Z</dc:date>
    </item>
  </channel>
</rss>

