<?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: How to receive numerical input from user, save as a variable and use variable in control chart builder as the set control limits in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709266#M89329</link>
    <description>&lt;P&gt;This question has been asked an answered multiple times withing the Community Discussion.&amp;nbsp; I suggest that you search the previous discussions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also strongly suggest that you read the Scripting Guide.&amp;nbsp; It contains documentation on the JMP Application Builder and window building that will be used in the development of your request.&lt;/P&gt;
&lt;P&gt;Here is a simple script to get you started&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
nw = New Window( "input",
	modal,
	Lineup Box( N Col( 2 ),
		Text Box( "input 1 " ),
		ne1 = Number Edit Box( . ),
		Text Box( "input 2 " ),
		ne2 = Number Edit Box( . ),
		Text Box( "input 3 " ),
		ne3 = Number Edit Box( . ),
		Text Box( "input 4 " ),
		ne4 = Number Edit Box( . ),
		Text Box( "input 5 " ),
		ne5 = Number Edit Box( . ),
		Text Box( "input 6 " ),
		ne6 = Number Edit Box( . )
	),
	bb = Button Box( "OK",
		val1 = ne1 &amp;lt;&amp;lt; get;
		val2 = ne2 &amp;lt;&amp;lt; get;
		val3 = ne3 &amp;lt;&amp;lt; get;
		val4 = ne4 &amp;lt;&amp;lt; get;
		val5 = ne5 &amp;lt;&amp;lt; get;
		val6 = ne6 &amp;lt;&amp;lt; get;
	)
);
Show( val1, val2, val3, val4, val5, val6 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 14 Dec 2023 03:54:23 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2023-12-14T03:54:23Z</dc:date>
    <item>
      <title>How to receive numerical input from user, save as a variable and use variable in control chart builder as the set control limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709187#M89323</link>
      <description>&lt;P&gt;Hello, I am looking for a way to collect 6 numerical entries from a user at the beginning of a script. These 6 numbers need to be saved as variable which I am hoping to reference later as Levey Jennings control chart limits.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using the code below works with numbers but would like to change to reference the variables which have been set instead.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;Set Control Limits( {LCL( a ), UCL( b ), Avg( c )} )&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 22:48:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709187#M89323</guid>
      <dc:creator>GN19</dc:creator>
      <dc:date>2023-12-13T22:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive numerical input from user, save as a variable and use variable in control chart builder as the set control limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709266#M89329</link>
      <description>&lt;P&gt;This question has been asked an answered multiple times withing the Community Discussion.&amp;nbsp; I suggest that you search the previous discussions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also strongly suggest that you read the Scripting Guide.&amp;nbsp; It contains documentation on the JMP Application Builder and window building that will be used in the development of your request.&lt;/P&gt;
&lt;P&gt;Here is a simple script to get you started&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
nw = New Window( "input",
	modal,
	Lineup Box( N Col( 2 ),
		Text Box( "input 1 " ),
		ne1 = Number Edit Box( . ),
		Text Box( "input 2 " ),
		ne2 = Number Edit Box( . ),
		Text Box( "input 3 " ),
		ne3 = Number Edit Box( . ),
		Text Box( "input 4 " ),
		ne4 = Number Edit Box( . ),
		Text Box( "input 5 " ),
		ne5 = Number Edit Box( . ),
		Text Box( "input 6 " ),
		ne6 = Number Edit Box( . )
	),
	bb = Button Box( "OK",
		val1 = ne1 &amp;lt;&amp;lt; get;
		val2 = ne2 &amp;lt;&amp;lt; get;
		val3 = ne3 &amp;lt;&amp;lt; get;
		val4 = ne4 &amp;lt;&amp;lt; get;
		val5 = ne5 &amp;lt;&amp;lt; get;
		val6 = ne6 &amp;lt;&amp;lt; get;
	)
);
Show( val1, val2, val3, val4, val5, val6 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Dec 2023 03:54:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709266#M89329</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-12-14T03:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive numerical input from user, save as a variable and use variable in control chart builder as the set control limits</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709279#M89330</link>
      <description>&lt;P&gt;To dig a little deeper, see &lt;LI-MESSAGE title="Modal Dialogs" uid="436177" url="https://community.jmp.com/t5/Uncharted/Modal-Dialogs/m-p/436177#U436177" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp; which uses an alternate way to retrieve the values.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2023 04:40:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-receive-numerical-input-from-user-save-as-a-variable-and/m-p/709279#M89330</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2023-12-14T04:40:42Z</dc:date>
    </item>
  </channel>
</rss>

