<?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: Update Column  at Specified Rows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19244#M17549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the expected output in your question, I think there is a slight mistake in your formula for "&lt;SPAN style="color: #555555; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Defective Rate(%)&lt;/SPAN&gt;" column if you only wanted "Rejected" rows from "Category" column to be ignored.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I never tried using For each row or &lt;/SPAN&gt;&lt;SPAN style="color: #555555; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Begin data update before, so I am not sure how to fix your current codes using those commands. However &lt;/SPAN&gt;I have 2 alternative approaches on how you can achieve the same output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Using IF command (faster approach):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt=Current data table();&lt;/P&gt;&lt;P&gt;a = (dt&amp;lt;&amp;lt; New Column("DR", "Continuous", Formula(If(:Category == "Reject", "", Char(:Cell Qty / :Daily Total)))))&amp;lt;&amp;lt;get values;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Defective Rate(%)", "Continuous", set values(a));&lt;/P&gt;&lt;P&gt;b = (dt&amp;lt;&amp;lt; New Column("Y", "Continuous", Formula(If(:Category == "Binned", Char(:Cell Qty / :Daily Total), ""))))&amp;lt;&amp;lt;get values;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Yield", "Continuous", set values(b));&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt;delete columns({"DR","Y"});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since some columns are meant to be returned as empty columns (""), the created columns will automatically set themselves to character columns even though you have already defined them as numeric when you create the columns. Hence I've created extra dummy columns to serve the calculation purposes and set these values into new columns ("&lt;SPAN style="font-size: 13.3333px;"&gt;Defective Rate(%)&lt;/SPAN&gt;"&amp;nbsp; and " Yield") that you intend to create. In this way, you will be getting numeric columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Using Get rows where() and FOR loops:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;dt=Current data table();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Defective Rate(%)", "Continuous", numeric);&lt;/P&gt;&lt;P&gt;r1 = dt &amp;lt;&amp;lt; get rows where(:Category!="Reject");&lt;/P&gt;&lt;P&gt;for (i=1, i&amp;lt;=nrows(r1), i++,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Column(dt, "Defective Rate(%)")[r1&lt;I&gt;] = :Cell Qty[r1&lt;I&gt;] / :Daily Total[r1&lt;I&gt;]&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Yield", "Continuous", numeric);&lt;/P&gt;&lt;P&gt;r2 = dt &amp;lt;&amp;lt; get rows where(:Category=="Binned");&lt;/P&gt;&lt;P&gt;for (i=1, i&amp;lt;=nrows(r2), i++,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Column(dt, "Yield")[r2&lt;I&gt;] = :Cell Qty[r2&lt;I&gt;] / :Daily Total[r2&lt;I&gt;]&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe this approach will be slower if your data set is huge since looping takes longer processing time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11997_pastedImage_21.png" style="width: 615px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3383i088EE4D0B953922D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11997_pastedImage_21.png" alt="11997_pastedImage_21.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://kvoqx44227.lithium.com/7.0.4.3b79b96/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Val&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Oct 2016 03:21:56 GMT</pubDate>
    <dc:creator>ValarieSimmons</dc:creator>
    <dc:date>2016-10-19T03:21:56Z</dc:date>
    <item>
      <title>Update Column  at Specified Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19243#M17548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to use the "For each row" and "Begin Data Update" script commands to update the calculation on specific row related to a column.&lt;/P&gt;&lt;P&gt;According to the table below, I intend to have two addition columns, Defective Rate (%) and Yield, and they both use the same equation of cell qty/daily total. &lt;/P&gt;&lt;P&gt;However, Defective Rate (%) column will only calculate the rows where Category = Reject &amp;amp; MRB, and Yield column will only calculate the rows where Category=Binned. &lt;/P&gt;&lt;P&gt;I can get this work out using IF command like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt=Current data table();&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt; New Column("Defective Rate(%)", Numeric, "Continuous", Formula(Name Expr(If(:Category == "Reject", "MRB" ,:Cell Qty/:Daily Total))));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I try to learn how to use the For each row combined with Begin Data Update to reach the same result. &lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt; New Column("Yield", Numeric, "Continuous");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt; Begin data update;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For each Row( :Yield_ = Selected(Row State())=Contains(:Category,"Binned"),&amp;nbsp; :Cell Qty/:Daily Total)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Category&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;WorkWeek&lt;/TD&gt;&lt;TD&gt;Date_PROD.&lt;/TD&gt;&lt;TD&gt;Cell Qty&lt;/TD&gt;&lt;TD&gt;Daily Total&lt;/TD&gt;&lt;TD&gt;Defective Rate(%)&lt;/TD&gt;&lt;TD&gt;Yield&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Reject&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-20&lt;/TD&gt;&lt;TD&gt;751&lt;/TD&gt;&lt;TD&gt;15553&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MRB&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-20&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;15553&lt;/TD&gt;&lt;TD&gt;0.00135022&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Binned&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-20&lt;/TD&gt;&lt;TD&gt;14781&lt;/TD&gt;&lt;TD&gt;15553&lt;/TD&gt;&lt;TD&gt;0.95036327&lt;/TD&gt;&lt;TD&gt;0.95036327&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Reject&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-21&lt;/TD&gt;&lt;TD&gt;1251&lt;/TD&gt;&lt;TD&gt;31586&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MRB&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-21&lt;/TD&gt;&lt;TD&gt;83&lt;/TD&gt;&lt;TD&gt;31586&lt;/TD&gt;&lt;TD&gt;0.00262775&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Binned&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-21&lt;/TD&gt;&lt;TD&gt;30252&lt;/TD&gt;&lt;TD&gt;31586&lt;/TD&gt;&lt;TD&gt;0.9577661&lt;/TD&gt;&lt;TD&gt;0.9577661&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Reject&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-22&lt;/TD&gt;&lt;TD&gt;1276&lt;/TD&gt;&lt;TD&gt;27964&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MRB&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-22&lt;/TD&gt;&lt;TD&gt;42&lt;/TD&gt;&lt;TD&gt;27964&lt;/TD&gt;&lt;TD&gt;0.00150193&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Binned&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-22&lt;/TD&gt;&lt;TD&gt;26646&lt;/TD&gt;&lt;TD&gt;27964&lt;/TD&gt;&lt;TD&gt;0.95286797&lt;/TD&gt;&lt;TD&gt;0.95286797&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Reject&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-23&lt;/TD&gt;&lt;TD&gt;126&lt;/TD&gt;&lt;TD&gt;1786&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;MRB&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-23&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;1786&lt;/TD&gt;&lt;TD&gt;0.00279955&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Binned&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;TD&gt;2016-06-23&lt;/TD&gt;&lt;TD&gt;1655&lt;/TD&gt;&lt;TD&gt;1786&lt;/TD&gt;&lt;TD&gt;0.92665174&lt;/TD&gt;&lt;TD&gt;0.92665174&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 18:02:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19243#M17548</guid>
      <dc:creator>bernie426</dc:creator>
      <dc:date>2016-06-23T18:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Update Column  at Specified Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19244#M17549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the expected output in your question, I think there is a slight mistake in your formula for "&lt;SPAN style="color: #555555; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Defective Rate(%)&lt;/SPAN&gt;" column if you only wanted "Rejected" rows from "Category" column to be ignored.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I never tried using For each row or &lt;/SPAN&gt;&lt;SPAN style="color: #555555; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Begin data update before, so I am not sure how to fix your current codes using those commands. However &lt;/SPAN&gt;I have 2 alternative approaches on how you can achieve the same output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Using IF command (faster approach):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dt=Current data table();&lt;/P&gt;&lt;P&gt;a = (dt&amp;lt;&amp;lt; New Column("DR", "Continuous", Formula(If(:Category == "Reject", "", Char(:Cell Qty / :Daily Total)))))&amp;lt;&amp;lt;get values;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Defective Rate(%)", "Continuous", set values(a));&lt;/P&gt;&lt;P&gt;b = (dt&amp;lt;&amp;lt; New Column("Y", "Continuous", Formula(If(:Category == "Binned", Char(:Cell Qty / :Daily Total), ""))))&amp;lt;&amp;lt;get values;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Yield", "Continuous", set values(b));&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt;delete columns({"DR","Y"});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since some columns are meant to be returned as empty columns (""), the created columns will automatically set themselves to character columns even though you have already defined them as numeric when you create the columns. Hence I've created extra dummy columns to serve the calculation purposes and set these values into new columns ("&lt;SPAN style="font-size: 13.3333px;"&gt;Defective Rate(%)&lt;/SPAN&gt;"&amp;nbsp; and " Yield") that you intend to create. In this way, you will be getting numeric columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Using Get rows where() and FOR loops:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;dt=Current data table();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Defective Rate(%)", "Continuous", numeric);&lt;/P&gt;&lt;P&gt;r1 = dt &amp;lt;&amp;lt; get rows where(:Category!="Reject");&lt;/P&gt;&lt;P&gt;for (i=1, i&amp;lt;=nrows(r1), i++,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Column(dt, "Defective Rate(%)")[r1&lt;I&gt;] = :Cell Qty[r1&lt;I&gt;] / :Daily Total[r1&lt;I&gt;]&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Yield", "Continuous", numeric);&lt;/P&gt;&lt;P&gt;r2 = dt &amp;lt;&amp;lt; get rows where(:Category=="Binned");&lt;/P&gt;&lt;P&gt;for (i=1, i&amp;lt;=nrows(r2), i++,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Column(dt, "Yield")[r2&lt;I&gt;] = :Cell Qty[r2&lt;I&gt;] / :Daily Total[r2&lt;I&gt;]&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe this approach will be slower if your data set is huge since looping takes longer processing time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final Output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11997_pastedImage_21.png" style="width: 615px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3383i088EE4D0B953922D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11997_pastedImage_21.png" alt="11997_pastedImage_21.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://kvoqx44227.lithium.com/7.0.4.3b79b96/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Val&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 03:21:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19244#M17549</guid>
      <dc:creator>ValarieSimmons</dc:creator>
      <dc:date>2016-10-19T03:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Update Column  at Specified Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19245#M17550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Val, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the suggested solutions, they both work out well. &lt;/P&gt;&lt;P&gt;Actually, I have came up with another formula approach using IF command like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555555; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;dt=Current data table();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt; New Column("Defective Rate(%)", Numeric, "Continuous", Formula(Name Expr(If((contains(:Category, "MRB")| contains(:Category, "Reject")),:Cell Qty/:Daily Total))));&lt;/P&gt;&lt;P&gt;dt&amp;lt;&amp;lt; New Column("Yield", Numeric, "Continuous", Formula(Name Expr(If(:Category == "Binned",:Cell Qty/:Daily Total))));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know what is the speed difference b/w using IF command and looping command?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 17:55:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19245#M17550</guid>
      <dc:creator>bernie426</dc:creator>
      <dc:date>2016-07-12T17:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Update Column  at Specified Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19246#M17551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bernie426,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to my personal experience, IF command complete its operations really quickly and will return you with instant results because they only deal with a yes or no situation. On the other hand, you will see some noticable delay before getting your results fully generated through looping since looping commands have to deal with iterations and they will keep operating until they reach the last iteration defined by the programmer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These statements only apply if you are dealing with super huge data set that involves significantly large amount of rows and columns, which makes IF command a more superior option than looping commands in terms of time consumption. However for smaller sets of data, it is safe to use either one of the commands since the time delay for results to be populated is insignificant. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.jmp.com/7.0.4.3b79b96/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Val&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2016 00:42:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-Column-at-Specified-Rows/m-p/19246#M17551</guid>
      <dc:creator>ValarieSimmons</dc:creator>
      <dc:date>2016-07-13T00:42:26Z</dc:date>
    </item>
  </channel>
</rss>

