<?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 how to use inputfield in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286600#M106630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;checked it... no problem using Inline statement, when I switch to SQL query, it doesn't work no more &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Feb 2012 17:07:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-02-15T17:07:10Z</dc:date>
    <item>
      <title>how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286596#M106626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to use inputfield but it seems it doesn't work as I need.&lt;/P&gt;&lt;P&gt;According to the base guide, I have to declare something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;INPUTFIELD Test.inputField;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I can declare my table. I used this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var, inputField&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After reloading, I can use that table and change every inputField value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to declare a table like the following, I can't change inputField value - that's the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Test: &lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM table;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to change some values, and the table comes from a query. &lt;/P&gt;&lt;P&gt;I use QUALIFY and UNQUALIFY statement in my script. I can add a qvw file with a semplify example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last but not least: when an user edits a value, will the document save new value into its memory and then share new value with all users?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 15:15:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286596#M106626</guid>
      <dc:creator />
      <dc:date>2012-02-15T15:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286597#M106627</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;Try just removing the table name from the INPUTFIELD sentence, and leave only the name of the actual field, case sensitive:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;INPUTFIELD Field_1;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD Field_1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field_2;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM Table;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286597#M106627</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-02-15T16:16:04Z</dc:date>
    </item>
    <item>
      <title>how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286598#M106628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;I tried but it still doesn't work &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the beginning of the script I wrote QUALIFY *...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 16:52:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286598#M106628</guid>
      <dc:creator />
      <dc:date>2012-02-15T16:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286599#M106629</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;My bad, then you do have to set the table name in the INPUTFIELD statement. Are you sure that you are spelling the field correctly? Does it appear case sensitive as you see it in the table viewer (Ctrl + T)? Note that some drivers are case insensitive about the name of the field and they send to the DBM all field names. QlikView does not work that way, and if the field name is uppercase, INPUTFIELD must specify the field uppercase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 17:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286599#M106629</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-02-15T17:02:10Z</dc:date>
    </item>
    <item>
      <title>how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286600#M106630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;checked it... no problem using Inline statement, when I switch to SQL query, it doesn't work no more &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 17:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286600#M106630</guid>
      <dc:creator />
      <dc:date>2012-02-15T17:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286601#M106631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Try this application&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 19:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286601#M106631</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-02-15T19:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286602#M106632</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;&lt;/P&gt;&lt;P&gt;But no my document&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens to you document if you use a script like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *, 1 as Test&lt;/P&gt;&lt;P&gt;FROM Testdata;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In more, I used OLEDB, I see you used ODBC: is this a problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 14:40:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286602#M106632</guid>
      <dc:creator />
      <dc:date>2012-02-16T14:40:34Z</dc:date>
    </item>
    <item>
      <title>how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286603#M106633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Could someone share some more examples on how to use InputField ? I checked the Qview reference guide and the explanation there is really poor. I simply would need to add one InputField in an existing loaded table to appear as a Comments field, where I can manually enter a comment as needed for every row in my table.&lt;/P&gt;&lt;P&gt;Is there any other way to do it than using Load Inline statement ? I found an example , but using LOAD INLINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD Budget;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Area, Actual, Budget&lt;/P&gt;&lt;P&gt;North, 10000&lt;/P&gt;&lt;P&gt;South, 20000&lt;/P&gt;&lt;P&gt;East, 30000&lt;/P&gt;&lt;P&gt;west, 40000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example is really straight forward, but in my case the table where I need to add the manual entry field is already loaded ( from a flat file generated from another system ). Appreciate any help&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Enrique&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 15:29:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286603#M106633</guid>
      <dc:creator>quiquehm</dc:creator>
      <dc:date>2012-02-16T15:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286604#M106634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;The below are the steps forusing inputfield.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;1) declare the field&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;inputfield Test;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -------- here Test is the field name.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;2) Use the field inthe table and initialize its value&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Select *, 1 as Test from Table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;3)use it in expression&amp;nbsp; of a pivot/ Straight Table&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Inpustum(Test) &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 0px; margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:28:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286604#M106634</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-02-16T21:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286605#M106635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;Hi Present02,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;Try with ODBC in your system or create a resident of the table&amp;nbsp; like below&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;Data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;Select * from TestTable;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;Load * , 1 as Test residentData;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;where Test is my inputfield.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;I will try with OLEDB and let you know my result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-family: Arial, sans-serif; font-size: 10pt;"&gt;Deepak&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2012 21:29:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286605#M106635</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-02-16T21:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286606#M106636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;mmm ok, thank you and let me know &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Im going to try your suggestion...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 09:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286606#M106636</guid>
      <dc:creator />
      <dc:date>2012-02-17T09:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286607#M106637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Inputsum(Inputfield)pic.JPG" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/11381_Inputsum%28Inputfield%29pic.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot Deepak, now I understand a bit better how to setup the Inputfield ( in fact the reference guide should be more clear ).&lt;/P&gt;&lt;P&gt;The challenge I have is that the type of data I need to use as Inputfield is just free text ( manual entry comments ). I tried your instructions using '1' to initialize the value of the Inputfield ( in my case named as Comments ) and it works, no problem, you can change the values in a pivot table ( using Inputsum(Comments) as expression ) ..and it works ok, I even tried using '0' to initialize ..and it works perfect ...see above printscreen.&lt;/P&gt;&lt;P&gt;Do you know if it´s possible to enter free text in the Inputfield instead of numbers ? ( the only functions I found when used as expression are Inputsum and Inputavg ).When I try to enter anything different to numbers it does not accept it...simply puts a 0 ( or 1..if used as initial value ). I tried setting the Inputfield as a Dimension in my pivot table ( to try an enter free text there ) but it doesn´t work ( not even as a Calculated dimension using Inputsum ). &lt;/P&gt;&lt;P&gt;Appreciate any hint on this&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Enrique&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 12:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286607#M106637</guid>
      <dc:creator>quiquehm</dc:creator>
      <dc:date>2012-02-17T12:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286608#M106638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Present,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with oledb and it seems to be working fine. PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 16:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286608#M106638</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-02-17T16:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286609#M106639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Enrique,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;I am not sure if you can add input text field in a pivot table. But you can do it a table box. In the above attach file on the right u will see a table box. You can input text into it and the respective changes will be seen in the pivot table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Deepak&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 16:28:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286609#M106639</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-02-17T16:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286610#M106640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help, I'm trying to edit your qvw file &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 16:31:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286610#M106640</guid>
      <dc:creator />
      <dc:date>2012-02-17T16:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286611#M106641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about something like this script? May it work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD newTable.a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT TO [Provider=MSDASQL.1;Persist Security Info=False;Extended Properties="DSN=tesAccess;DBQ=C:\Users\Deepu\Desktop\Community\Marketing Projects1.accdb;DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;"];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;newTable:&lt;/P&gt;&lt;P&gt;LOAD a as AField; &lt;/P&gt;&lt;P&gt;SQL SELECT 1 as a&lt;/P&gt;&lt;P&gt;FROM `C:\Users\Deepu\Desktop\Community\Marketing Projects1.accdb`.Testdata;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this other script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUTFIELD newTable.a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT TO [Provider=MSDASQL.1;Persist Security Info=False;Extended Properties="DSN=tesAccess;DBQ=C:\Users\Deepu\Desktop\Community\Marketing Projects1.accdb;DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;"];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;newTable:&lt;/P&gt;&lt;P&gt;LOAD a as AField; &lt;/P&gt;&lt;P&gt;SQL SELECT fieldFromDB as a&lt;/P&gt;&lt;P&gt;FROM `C:\Users\Deepu\Desktop\Community\Marketing Projects1.accdb`.Testdata;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 16:33:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286611#M106641</guid>
      <dc:creator />
      <dc:date>2012-02-17T16:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286612#M106642</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;Inputfield with qualify&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 16:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286612#M106642</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2012-02-17T16:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286613#M106643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done! INPUTFIELD statement doesn't work when I use this code:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;INPUTFIELD Table.Field;&lt;/P&gt;&lt;P&gt;LOAD field as Field;&lt;/P&gt;&lt;P&gt;SQL SELECT field FROM table;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it only works without as stament, so my code becomes:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;INPUTFIELD Table.Field;&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT field as Field FROM table;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 17:11:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286613#M106643</guid>
      <dc:creator />
      <dc:date>2012-02-17T17:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286614#M106644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using the above attached .QVW file. It works fine in Qlikview Desktop. But when try this in Acces point, the change in value for the input field does not reflect. It always says 1. Does input field hold good for accesspoint.Can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 07:29:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286614#M106644</guid>
      <dc:creator />
      <dc:date>2013-02-04T07:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to use inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286615#M106645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having the same problem &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 18:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-use-inputfield/m-p/286615#M106645</guid>
      <dc:creator />
      <dc:date>2014-07-09T18:50:38Z</dc:date>
    </item>
  </channel>
</rss>

