<?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 inputfield in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/inputfield/m-p/218713#M71795</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="ForumPostBody"&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created the inputfield and inicialized it with '0' values.&lt;/P&gt;&lt;P&gt;The problem is that every time I close the model and I turn to open it the field has new values that I never introduced and I have to reload to solve that,&lt;/P&gt;&lt;P&gt;any idea?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;DIV style="clear: both;"&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Feb 2011 15:24:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-02-16T15:24:38Z</dc:date>
    <item>
      <title>inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/inputfield/m-p/218713#M71795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="ForumPostBody"&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have created the inputfield and inicialized it with '0' values.&lt;/P&gt;&lt;P&gt;The problem is that every time I close the model and I turn to open it the field has new values that I never introduced and I have to reload to solve that,&lt;/P&gt;&lt;P&gt;any idea?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;DIV style="clear: both;"&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 15:24:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/inputfield/m-p/218713#M71795</guid>
      <dc:creator />
      <dc:date>2011-02-16T15:24:38Z</dc:date>
    </item>
    <item>
      <title>inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/inputfield/m-p/218714#M71796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, I've seen that one before. Make sure that your declaration of inputfields is the very last thing you do in your script. If you have that field before, then prior to declaring it an inputfield call it a different name. Then alias it at the end. For example, if your field is myfield, then your script can look as follows:&lt;/P&gt;&lt;P&gt;mytable:&lt;BR /&gt;LOAD&lt;BR /&gt; myfield as myfieldtemp&lt;BR /&gt;FROM datasource.qvd (qvd);&lt;/P&gt;&lt;P&gt;Then at the end you can change it to an inputfield:&lt;/P&gt;&lt;P&gt;INPUTFIELD myfield;&lt;/P&gt;&lt;P&gt;myfinaltable:&lt;BR /&gt;LOAD&lt;BR /&gt; myfieldtemp as myfield&lt;BR /&gt;RESIDENT mytable;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 01:44:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/inputfield/m-p/218714#M71796</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2011-02-17T01:44:12Z</dc:date>
    </item>
    <item>
      <title>inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/inputfield/m-p/218715#M71797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vlad,&lt;/P&gt;&lt;P&gt;I have tried it but it doesn't work propperly, the inputfield turns to 0 but It doesn't allow me to change its values (it becomes a normal field)&lt;/P&gt;&lt;P&gt;Here is the code I have used after your advice I don't know what I'm doing wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (TABLE1)load RULE_ID,&lt;/P&gt;&lt;P&gt;0 AS ATEMP&lt;/P&gt;&lt;P&gt;RESIDENT TABLE1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;left join (TABLE1) load RULE_ID,&lt;/P&gt;&lt;P&gt;A AS ATEMP&lt;/P&gt;&lt;P&gt;RESIDENT TABLE1;&lt;/P&gt;&lt;P&gt;inputfield A;&lt;/P&gt;&lt;P&gt;left join (TABLE1)load RULE_ID,&lt;/P&gt;&lt;P&gt;ATEMP AS A&lt;/P&gt;&lt;P&gt;RESIDENT TABLE1;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 13:34:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/inputfield/m-p/218715#M71797</guid>
      <dc:creator />
      <dc:date>2011-02-17T13:34:11Z</dc:date>
    </item>
    <item>
      <title>inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/inputfield/m-p/218716#M71798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works,&lt;/P&gt;&lt;P&gt;I thought I could do it with joins but I was wrong&lt;/P&gt;&lt;P&gt;Thank you Vlad!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Feb 2011 17:08:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/inputfield/m-p/218716#M71798</guid>
      <dc:creator />
      <dc:date>2011-02-17T17:08:23Z</dc:date>
    </item>
  </channel>
</rss>

