<?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 Help on Inputfield in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197840#M57364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the macro i wrote&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;sub asignavalores&lt;BR /&gt;&lt;BR /&gt; set fld = ActiveDocument.Fields("ventas2")&lt;BR /&gt; set table = ActiveDocument.GetSheetObject( "CH01" )&lt;BR /&gt; w = table.GetColumnCount&lt;BR /&gt; h = table.GetRowCount&lt;BR /&gt; set CellMatrix = table.GetCells2(0,0,w,h)&lt;BR /&gt; for RowIter=1 to h-1&lt;BR /&gt;&lt;BR /&gt; valor=CellMatrix(RowIter)(2).Text&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; FLD.SetInputFieldValue RowIter-1, valor&lt;BR /&gt;&lt;BR /&gt; next&lt;/P&gt;&lt;P style="font-style: italic"&gt;end sub&lt;/P&gt;&lt;P&gt;The problem is that it does not copy the values correct, in order, and i don't kow why&lt;/P&gt;&lt;P&gt;The only thing i need is edit the 2 column, wich is the result of an operation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 Jan 2010 19:46:55 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-01-30T19:46:55Z</dc:date>
    <item>
      <title>Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197835#M57359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;I'm developing a qv application and i need the user to change certain values on an pivot table.&lt;/P&gt;&lt;P&gt;I Know the use of inputfiled but the problem is that i need to change the values of a calculated expresion that I can not load in the script&lt;/P&gt;&lt;P&gt;I Have a column (NO INPUTFIELD) with the results and i need to copy this values to another column and use inputsum in the new column&lt;/P&gt;&lt;P&gt;Can anybody help me?&lt;/P&gt;&lt;P&gt;Sorry for my English&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 23:25:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197835#M57359</guid>
      <dc:creator />
      <dc:date>2009-12-28T23:25:45Z</dc:date>
    </item>
    <item>
      <title>Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197836#M57360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to write a macro to do that. In your case, you will cycle the first column and write the inputfield column with the corrisponding value. At the end, you will be able to manually use the inputfield as you do when its value is 0.&lt;/P&gt;&lt;P&gt;It is not very easy: see document "APIguide.qvw" included in standard documentation for the syntax of inputfield manipulation commands.&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;Paolo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 23:52:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197836#M57360</guid>
      <dc:creator />
      <dc:date>2009-12-28T23:52:36Z</dc:date>
    </item>
    <item>
      <title>Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197837#M57361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, thanks for your answer.&lt;/P&gt;&lt;P&gt;The problem is that i need help to buildl this macro&lt;/P&gt;&lt;P&gt;If someboy can help me i would aprreciate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 15:22:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197837#M57361</guid>
      <dc:creator />
      <dc:date>2009-12-30T15:22:57Z</dc:date>
    </item>
    <item>
      <title>Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197838#M57362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How about creating a duplicate column with different name and defining it as inputfield in the script? You can then use this column in 'inputsum'.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Inputfield Col3;&lt;BR /&gt;LOAD Col1,&lt;BR /&gt; Col2,&lt;BR /&gt; Col2 as Col3&lt;BR /&gt;FROM Table;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 16:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197838#M57362</guid>
      <dc:creator />
      <dc:date>2009-12-30T16:11:12Z</dc:date>
    </item>
    <item>
      <title>Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197839#M57363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answer&lt;/P&gt;&lt;P&gt;I try to explain the problem&lt;/P&gt;&lt;P&gt;Column3 is the result of an operation&lt;/P&gt;&lt;P&gt;[Column1+Column2/Column3] for expample&lt;/P&gt;&lt;P&gt;I can not do that on the script because any column has data of diferent tables&lt;/P&gt;&lt;P&gt;Happy new year for everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 16:26:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197839#M57363</guid>
      <dc:creator />
      <dc:date>2009-12-30T16:26:54Z</dc:date>
    </item>
    <item>
      <title>Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197840#M57364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the macro i wrote&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;sub asignavalores&lt;BR /&gt;&lt;BR /&gt; set fld = ActiveDocument.Fields("ventas2")&lt;BR /&gt; set table = ActiveDocument.GetSheetObject( "CH01" )&lt;BR /&gt; w = table.GetColumnCount&lt;BR /&gt; h = table.GetRowCount&lt;BR /&gt; set CellMatrix = table.GetCells2(0,0,w,h)&lt;BR /&gt; for RowIter=1 to h-1&lt;BR /&gt;&lt;BR /&gt; valor=CellMatrix(RowIter)(2).Text&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; FLD.SetInputFieldValue RowIter-1, valor&lt;BR /&gt;&lt;BR /&gt; next&lt;/P&gt;&lt;P style="font-style: italic"&gt;end sub&lt;/P&gt;&lt;P&gt;The problem is that it does not copy the values correct, in order, and i don't kow why&lt;/P&gt;&lt;P&gt;The only thing i need is edit the 2 column, wich is the result of an operation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jan 2010 19:46:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197840#M57364</guid>
      <dc:creator />
      <dc:date>2010-01-30T19:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197841#M57365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you find a solution to this issue? I'm not successful in using SetInputFieldValue either.... //Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 09:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-on-Inputfield/m-p/197841#M57365</guid>
      <dc:creator>RSvebeck</dc:creator>
      <dc:date>2014-02-18T09:03:05Z</dc:date>
    </item>
  </channel>
</rss>

