<?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: how to store table read by macro in a variable?? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119222#M900730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; but the values should come from straight table(which is dynamic i.e. its user dependent selection&amp;nbsp; based&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The XIRR function of Qlikview is also dependent on user selections. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jul 2016 07:39:24 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2016-07-22T07:39:24Z</dc:date>
    <item>
      <title>how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119218#M900726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a table rows and columns read by macro code - &lt;/P&gt;&lt;P&gt;Sub ReadStraightTable&lt;/P&gt;&lt;P&gt;Set Table = ActiveDocument.GetSheetObject( "CH05" )&lt;/P&gt;&lt;P&gt;For RowIter = 1 to table.GetRowCount-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; For ColIter = 2 to table.GetColumnCount-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set cell = table.GetCell(RowIter,ColIter)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox(cell.Text)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have to store it in a a variable?? any clue or help needed. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119218#M900726</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119219#M900727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't store a table in a variable. Well, not a Qlikview variable. I suppose you could store it in a vbscript variable. But more importantly... what are you trying to achieve anyway?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 15:51:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119219#M900727</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-21T15:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119220#M900728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello gysbert,&lt;/P&gt;&lt;P&gt;i want to calculate xirr , but i want the values should come from table in qlikview(which is dynamic)&amp;nbsp; and i want to print xirr value in a text box object, in text box object it should take input as the variables or by table object id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 16:21:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119220#M900728</guid>
      <dc:creator />
      <dc:date>2016-07-21T16:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119221#M900729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Im trying to calculate xirr , but the values should come from straight table(which is dynamic i.e. its user dependent selection&amp;nbsp; based)&amp;nbsp; that is in qlikview and then i want a text box in which the xirr will be displayed. the text box input parameter should be variables. and if i store it in vb script variable, then how should i use it as parameter in text box for any calculation??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 16:33:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119221#M900729</guid>
      <dc:creator />
      <dc:date>2016-07-21T16:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119222#M900730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; but the values should come from straight table(which is dynamic i.e. its user dependent selection&amp;nbsp; based&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The XIRR function of Qlikview is also dependent on user selections. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 07:39:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119222#M900730</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-22T07:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119223#M900731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK but i want to store the output of cells into vb variable so that i can use it to calculate in table box by just passing varaible names , lik for eg. xirr(var1,var2). now in this it wil calculate only if var1 is holding all dates and var2 is holding all amounts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 13:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119223#M900731</guid>
      <dc:creator />
      <dc:date>2016-07-22T13:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119224#M900732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why? What's wrong with calculating it directly using an expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 14:19:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119224#M900732</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-22T14:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119225#M900733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have a look at attachment. &lt;/P&gt;&lt;P&gt;i want to calculate the xirr based on xirr_date and xirr_payment from table ch05 and the table changes accroding to the date in the left hand side. now i am getting to read values from the table ch05 now i want to store the amount in variable vValue1 and date in variable vValue 2 and then pass it to text box as xirr(vValue1,vValue2).&amp;nbsp; can you help me out with this.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 14:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119225#M900733</guid>
      <dc:creator />
      <dc:date>2016-07-22T14:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119226#M900734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Gysbert&lt;/P&gt;&lt;P&gt;plz have a look at this attachment, now im able to read column 2 and column 3 that is date and amount, now i want to store the first column values in var 1 and second amount column in var 2 . so i can pass it to text box for xirr calc, as xirr(val1, val2). if you could help me with this.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 14:41:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119226#M900734</guid>
      <dc:creator />
      <dc:date>2016-07-22T14:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119227#M900735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, that just makes totally no sense at all to me. I have no idea what on earth you're trying to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 16:31:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119227#M900735</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-22T16:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119228#M900736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;based on dates selection my table ch05 gets updated , ok&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;now im not able to get &lt;EM style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;XIRR(Payments,ActivityDate) , when i make any change in date (list box - which is in left top, see my attachment). its very challenging question that im trying to solve.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 18:09:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119228#M900736</guid>
      <dc:creator />
      <dc:date>2016-07-22T18:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119229#M900737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That Date field in the list box on the left is totally unconnected to the rest of the model. So using it in CH05 is totally just generating completely bogus numbers. It's all nonsense afaict.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 18:23:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119229#M900737</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-22T18:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119230#M900738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you dont want to help dats fine but do not tell like its nonsense, ok if u dont know dats fine too. but u have no right to say anything u want. ok that date list box is connected to CH05 table, ok based on selection of date , the ch05 table changes and i want to find xirr of the dynamic date and payment values.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 18:27:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119230#M900738</guid>
      <dc:creator />
      <dc:date>2016-07-22T18:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119231#M900739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and the data is not real, its a dummy , just to test functionality, nobody uploads any original data of the firm or watever it is k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2016 18:28:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119231#M900739</guid>
      <dc:creator />
      <dc:date>2016-07-22T18:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119232#M900740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;nobody uploads any original data of the firm or watever it is k&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You'd be suprised. But that doesn't matter. Dummy data is fine as long as it's representative and logical.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jul 2016 11:51:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119232#M900740</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-23T11:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119233#M900741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The example you posted just doesn't make sense. You simply get a cartesian product when you use that unconnected Date field. Expression results will repeat for each Date value. Why do you need that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you should simple export your straight table directly to excel and &lt;SPAN style="font-size: 13.3333px;"&gt;calculate &lt;/SPAN&gt;whatever you think you need in excel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jul 2016 11:54:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119233#M900741</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-23T11:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119234#M900742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello gysbert, the example i posted is not correct. &lt;/P&gt;&lt;P&gt;Can you help me or give a suggestion for how to read table (which is having two coulmns, one is date and another one is amount, and it is dyanmic, means the values keeps on changing based on user selection) and calculate XIRR from the two columns of table. if i update the table , then new xirr should be calculated and displayed.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 12:59:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119234#M900742</guid>
      <dc:creator />
      <dc:date>2016-07-25T12:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to store table read by macro in a variable??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119235#M900743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post a file (excel is file) with example data and the results you expect based on that data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 17:01:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-store-table-read-by-macro-in-a-variable/m-p/1119235#M900743</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-07-25T17:01:30Z</dc:date>
    </item>
  </channel>
</rss>

