<?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 Parameters in script (prompt) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441106#M164441</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any way in a QlkView script that you can prompt the user to enter a variable before the script with continue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Feb 2013 16:31:05 GMT</pubDate>
    <dc:creator>zagzebski</dc:creator>
    <dc:date>2013-02-15T16:31:05Z</dc:date>
    <item>
      <title>Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441106#M164441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any way in a QlkView script that you can prompt the user to enter a variable before the script with continue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 16:31:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441106#M164441</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2013-02-15T16:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441107#M164442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the system function Input():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1306"&gt;&lt;/A&gt;&lt;A name="input("&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;Input(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;str cue [, str caption]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P class="syntax"&gt;&lt;/P&gt;&lt;P&gt;This function can be used in the script only and opens an input box that prompts the user for a value during the script execution. The parameters cue and caption are used as message and caption texts, respectively. The function returns the entered value. &lt;/P&gt;&lt;P&gt;The input box function returns NULL if the dialog is cancelled, closed or cannot be shown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P class="Code"&gt;Load &lt;BR /&gt;Input('Enter value', 'Input box') as v, &lt;BR /&gt;Recno () as r &lt;BR /&gt;autogenerate 3; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 16:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441107#M164442</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-02-15T16:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441108#M164443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is there no way to use this as part of a SET function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 16:48:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441108#M164443</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2013-02-15T16:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441109#M164444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope, you need to use LET if you want to put a value from an input box in a variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMyVar = &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Input('Enter value', 'Input box')&lt;/SPAN&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 16:50:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441109#M164444</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-02-15T16:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441110#M164445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So this doesn't seem to work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMyVar = &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Input('Enter value', 'Input box')&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;vMyVar,&lt;/P&gt;&lt;P&gt;Field1,&lt;/P&gt;&lt;P&gt;Field2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from T1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I be able to now read the variable into the load file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 17:13:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441110#M164445</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2013-02-15T17:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441111#M164446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forget it. Had a syntax error. This works great. Thanks so much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 17:33:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/441111#M164446</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2013-02-15T17:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters in script (prompt)</title>
      <link>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/1748940#M453501</link>
      <description>&lt;P&gt;Is there anyway to maket thant input box bigger?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="prompt.png" style="width: 699px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/41563i474C73F1CC73D82A/image-size/large?v=v2&amp;amp;px=999" role="button" title="prompt.png" alt="prompt.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 16:18:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Parameters-in-script-prompt/m-p/1748940#M453501</guid>
      <dc:creator>lfalmoguera</dc:creator>
      <dc:date>2020-10-01T16:18:04Z</dc:date>
    </item>
  </channel>
</rss>

