<?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: one selection for MSA Metadata while running GR&amp;amp;R in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754879#M93723</link>
    <description>&lt;P&gt;I can affirm that this is an issue with JMP 18 as well and the only current way around it is JSL as Jarmo pointed out and so kindly added the code for.&amp;nbsp; You are correct in being annoyed here as if the data is entered already into the column property or from a table then there is no reason for this window to pop up!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a wish list item to address this so would appreciate a kudos on it to see if we can get it fixed!&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Broadcasting-of-input-boxes/idi-p/750652" target="_blank"&gt;Broadcasting of input boxes - JMP User Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
    <pubDate>Thu, 16 May 2024 02:30:49 GMT</pubDate>
    <dc:creator>shampton82</dc:creator>
    <dc:date>2024-05-16T02:30:49Z</dc:date>
    <item>
      <title>one selection for MSA Metadata while running GR&amp;R</title>
      <link>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754637#M93687</link>
      <description>&lt;P&gt;I am using JMP17. While doing GRR I am getting 'Edit MSA Metadata' box for each parameters. I have &amp;gt;50 parameters for GRR and I don't want to click ok for each parameters. Is it possible to apply Lower and upper tolerance to all parameters with one click.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't remember having this issue in JMP16.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ConfidenceOwl94_0-1715781740636.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64249iE8EF9B127B4A76C8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ConfidenceOwl94_0-1715781740636.png" alt="ConfidenceOwl94_0-1715781740636.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 14:05:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754637#M93687</guid>
      <dc:creator>ConfidenceOwl94</dc:creator>
      <dc:date>2024-05-15T14:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: one selection for MSA Metadata while running GR&amp;R</title>
      <link>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754649#M93689</link>
      <description>&lt;P&gt;If I remember correctly JMP16 did have some bugs with the limit selection IF you had missing values (it might have gotten fixed in maintenance updates, but I don't remember if that did happen).&amp;nbsp;Do you have specification limits set as column properties? You can "solve" this issue (or maybe an extremely annoying feature?) by scripting.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(I will be presenting tomorrow in Finland JMP User Group and something related to this is one small part of it.) Script below might give some idea what you could possibly do BUT do verify that it uses correct limits.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

collist = dt &amp;lt;&amp;lt; Get Column Names("Continuous", "String");
varchar = dt &amp;lt;&amp;lt; Variability Chart(
	Y(Eval(collist)),
	Model("Main Effect"),
	X(:SITE)
	, invisible // might make execution faster
	, &amp;lt;&amp;lt; "Gauge R&amp;amp;R Report"n(1) // message could also be moved here
);
dt_gage_results = Report(varchar)["Variability Gauge Analysis for ?", "Gauge R&amp;amp;R", Table Box(1)] &amp;lt;&amp;lt; Make Combined Data Table;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2024 14:18:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754649#M93689</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-15T14:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: one selection for MSA Metadata while running GR&amp;R</title>
      <link>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754879#M93723</link>
      <description>&lt;P&gt;I can affirm that this is an issue with JMP 18 as well and the only current way around it is JSL as Jarmo pointed out and so kindly added the code for.&amp;nbsp; You are correct in being annoyed here as if the data is entered already into the column property or from a table then there is no reason for this window to pop up!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a wish list item to address this so would appreciate a kudos on it to see if we can get it fixed!&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Broadcasting-of-input-boxes/idi-p/750652" target="_blank"&gt;Broadcasting of input boxes - JMP User Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 02:30:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754879#M93723</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2024-05-16T02:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: one selection for MSA Metadata while running GR&amp;R</title>
      <link>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754891#M93726</link>
      <description>&lt;P&gt;There are a lot of small (and large) improvements that could be done to at least Measurement System Analysis platform. One is exactly that, you already tell it to use MSA metadata, but still it won't use it without asking (and it will even hard-code the limits to the script? most likely caused by the same reason which allows you yo "change" the limits).&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 04:56:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/754891#M93726</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-16T04:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: one selection for MSA Metadata while running GR&amp;R</title>
      <link>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/803602#M98063</link>
      <description>&lt;P&gt;&lt;LI-MESSAGE title="Provide MSA/gage platform which would have similar user experience as process screening" uid="716217" url="https://community.jmp.com/t5/JMP-Wish-List/Provide-MSA-gage-platform-which-would-have-similar-user/m-p/716217#U716217" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;wish list item which is more or less related to this&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 15:07:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/one-selection-for-MSA-Metadata-while-running-GR-amp-R/m-p/803602#M98063</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-10-04T15:07:46Z</dc:date>
    </item>
  </channel>
</rss>

