<?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 Replace value of specific row in Table B with value from specific column in Table A in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/604794#M80751</link>
    <description>&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to automate updating my "GetLimitTable" with new data (I'm using Levey Jennings).&lt;/P&gt;&lt;P&gt;How to replace value of specific row in Table B with value from specific column in Table A?&lt;/P&gt;&lt;P&gt;For example, I want to;&lt;/P&gt;&lt;P&gt;-&amp;nbsp; replace row _Std Dev Value from 18.769 (Table B) with 10.312 (Robust Standard Deviation Table A)&lt;/P&gt;&lt;P&gt;-&amp;nbsp; replace row _Mean Value from 166.526 (Table B) with 166.1056 (Robust Mean Table A)&lt;/P&gt;&lt;P&gt;- replace row _LCL Value from 110.219 (Table B) with 135.145 (3*RobustStdDev Below Mean Table A)&lt;/P&gt;&lt;P&gt;- replace row _UCL Value from 222.833 (Table B) with 197.0656 (3*RobustStdDev Above Mean Table A)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WebDesignesCrow_1-1677209908815.png" style="width: 589px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50418i8568DF8666E2101F/image-dimensions/589x302?v=v2" width="589" height="302" role="button" title="WebDesignesCrow_1-1677209908815.png" alt="WebDesignesCrow_1-1677209908815.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;(I'm using JMP 17)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2023 16:33:29 GMT</pubDate>
    <dc:creator>WebDesignesCrow</dc:creator>
    <dc:date>2023-06-08T16:33:29Z</dc:date>
    <item>
      <title>Replace value of specific row in Table B with value from specific column in Table A</title>
      <link>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/604794#M80751</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to automate updating my "GetLimitTable" with new data (I'm using Levey Jennings).&lt;/P&gt;&lt;P&gt;How to replace value of specific row in Table B with value from specific column in Table A?&lt;/P&gt;&lt;P&gt;For example, I want to;&lt;/P&gt;&lt;P&gt;-&amp;nbsp; replace row _Std Dev Value from 18.769 (Table B) with 10.312 (Robust Standard Deviation Table A)&lt;/P&gt;&lt;P&gt;-&amp;nbsp; replace row _Mean Value from 166.526 (Table B) with 166.1056 (Robust Mean Table A)&lt;/P&gt;&lt;P&gt;- replace row _LCL Value from 110.219 (Table B) with 135.145 (3*RobustStdDev Below Mean Table A)&lt;/P&gt;&lt;P&gt;- replace row _UCL Value from 222.833 (Table B) with 197.0656 (3*RobustStdDev Above Mean Table A)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WebDesignesCrow_1-1677209908815.png" style="width: 589px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50418i8568DF8666E2101F/image-dimensions/589x302?v=v2" width="589" height="302" role="button" title="WebDesignesCrow_1-1677209908815.png" alt="WebDesignesCrow_1-1677209908815.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;(I'm using JMP 17)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:33:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/604794#M80751</guid>
      <dc:creator>WebDesignesCrow</dc:creator>
      <dc:date>2023-06-08T16:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Replace value of specific row in Table B with value from specific column in Table A</title>
      <link>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/605001#M80753</link>
      <description>&lt;P&gt;Assuming the row you want to get the data from in Table A is row 1, the following script will show you how to read from Table A and write to&amp;nbsp;Table B&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dtA = Data Table( "Table A" );
dtB = Data Table( "Table B" );

dtB:Value[(dtB &amp;lt;&amp;lt; get rows where( dtB:_LimitsKey == "_Std Dev" ))[1]] = 
	dtA:Robust Standard Deviation[1];

// Repeat for each of the values you need to transfer&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Feb 2023 05:05:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/605001#M80753</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-02-24T05:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Replace value of specific row in Table B with value from specific column in Table A</title>
      <link>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/605070#M80759</link>
      <description>&lt;P&gt;Awesome Jim!&lt;/P&gt;&lt;P&gt;It works. Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 08:28:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Replace-value-of-specific-row-in-Table-B-with-value-from/m-p/605070#M80759</guid>
      <dc:creator>WebDesignesCrow</dc:creator>
      <dc:date>2023-02-24T08:28:45Z</dc:date>
    </item>
  </channel>
</rss>

