<?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 MACRO Array in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194178#M55174</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give an example of how you intend to use this array?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Sep 2009 16:12:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-09-23T16:12:29Z</dc:date>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194175#M55171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone!&lt;/P&gt;&lt;P&gt;I wanted to know how to dynamically load an array via a macro.&lt;/P&gt;&lt;P&gt;CIAO!&lt;H&gt;&lt;/H&gt;&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 15:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194175#M55171</guid>
      <dc:creator />
      <dc:date>2009-09-22T15:48:50Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194176#M55172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can simulate an array by loading to a table and using functions like fieldvalue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 11:30:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194176#M55172</guid>
      <dc:creator />
      <dc:date>2009-09-23T11:30:54Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194177#M55173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But this is not dynamic array but static!&lt;BR /&gt;I need dynamic! &lt;IMG alt="Huh?" src="http://community.qlik.com/emoticons/emotion-18.gif" /&gt;&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 14:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194177#M55173</guid>
      <dc:creator />
      <dc:date>2009-09-23T14:04:06Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194178#M55174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give an example of how you intend to use this array?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 16:12:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194178#M55174</guid>
      <dc:creator />
      <dc:date>2009-09-23T16:12:29Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194179#M55175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excuse my English .......... maybe I can not explain!&lt;/P&gt;&lt;P&gt;I want to dynamically load the list of objects in an array.&lt;/P&gt;&lt;P&gt;This is an array&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;bildArr = Array("CH112", "CH113", "CH123", "CH115", "CH144", "CH124", "CH125", "CH126", "CH127")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I want to make a macro that loads at runtime&lt;/P&gt;&lt;P&gt;Daniela [:'(]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 17:21:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194179#M55175</guid>
      <dc:creator />
      <dc:date>2009-09-23T17:21:01Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194180#M55176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using this in your macro...&lt;/P&gt;&lt;P&gt;Objects = ActiveDocument.ActiveSheet.GetSheetObjects&lt;BR /&gt; For i = lBound(Objects) To uBound(Objects)&lt;/P&gt;&lt;P&gt;.... do something ....&lt;/P&gt;&lt;P&gt;next&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 17:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194180#M55176</guid>
      <dc:creator />
      <dc:date>2009-09-23T17:43:58Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194181#M55177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK!&lt;BR /&gt;But with that education is the loading of the array???&lt;/P&gt;&lt;P&gt;Daniela[:'(]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 19:07:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194181#M55177</guid>
      <dc:creator />
      <dc:date>2009-09-23T19:07:40Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194182#M55178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Daniela wrote:&lt;BR /&gt;But this is not dynamic array but static!&lt;BR /&gt;I need dynamic! &lt;IMG alt="Huh?" src="http://community.qlik.com/emoticons/emotion-18.gif" /&gt;&lt;BR /&gt;Daniela&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;sorry...I got confused with the "dynamically load an array" part.&lt;/P&gt;&lt;P&gt;a couple of questions: what values do you want to load in your array and when will you be reloading/resizing it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 19:50:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194182#M55178</guid>
      <dc:creator />
      <dc:date>2009-09-23T19:50:31Z</dc:date>
    </item>
    <item>
      <title>MACRO Array</title>
      <link>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194183#M55179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Quote: "But with that education is the loading of the array???"&lt;/P&gt;&lt;P&gt;Sorry, this lost something in the translation.&lt;/P&gt;&lt;P&gt;The 'Objects' in the code that I posted above is the array, and this gets loaded when the macro runs. You can set macros to run on various events (such as opening the document) or to run from a button. It will be dynamic in the sense that it will be recreated when the macro runs - it will hold all objects on the active sheet (as I have quoted it), and if you add another object that will be included next time the macro runs.&lt;/P&gt;&lt;P&gt;Perhaps you could create a QlikView document and load it to the Forum. If you point out what works and what you still need to do, there are people that can 'fix' it and post back the answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 20:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MACRO-Array/m-p/194183#M55179</guid>
      <dc:creator />
      <dc:date>2009-09-23T20:01:09Z</dc:date>
    </item>
  </channel>
</rss>

