<?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: Reset input Box values using Macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693902#M1082598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using button trigger. See attached qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jul 2014 04:35:14 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-07-02T04:35:14Z</dc:date>
    <item>
      <title>Reset input Box values using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693899#M1082595</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;I'm new to macro and i'm using input box for get values for variable.&lt;/P&gt;&lt;P&gt;i want to reset input value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 04:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693899#M1082595</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2014-07-02T04:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reset input Box values using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693900#M1082596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can't you use a sheet level trigger instead of a macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 04:23:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693900#M1082596</guid>
      <dc:creator />
      <dc:date>2014-07-02T04:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reset input Box values using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693901#M1082597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't know how to do that, could you please explain it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 04:25:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693901#M1082597</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2014-07-02T04:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reset input Box values using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693902#M1082598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using button trigger. See attached qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 04:35:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693902#M1082598</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-07-02T04:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reset input Box values using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693903#M1082599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anu ,&lt;/P&gt;&lt;P&gt;Try some thing like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sub clear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set v = ActiveDocument.Variables("Variable1")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;prop = v.GetProperties&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;dim list&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;list=Array("abc","45","xyz","")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;prop.PreDefinedList = list&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;v.SetProperties prop&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set ClearAllib = ActiveDocument.GetSheetObject("IB10")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ClearAllib.SetVariableContent 0,"",true&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Erase list&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;list=Array("abc","45","xyz")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;prop.PreDefinedList = list&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;v.SetProperties prop&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end sub&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 05:23:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693903#M1082599</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2014-07-02T05:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reset input Box values using Macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693904#M1082600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if this pop up macro edit window.&lt;/P&gt;&lt;P&gt;i have a feild called sales and need to clear that feild,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Clear&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Fields("FieldName").Clear&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;but this doesn't work. please help me&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 05:51:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reset-input-Box-values-using-Macro/m-p/693904#M1082600</guid>
      <dc:creator>anuradhaa</dc:creator>
      <dc:date>2014-07-02T05:51:28Z</dc:date>
    </item>
  </channel>
</rss>

