<?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 Associating data in the script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307055#M1198796</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Subscription, &lt;/P&gt;&lt;P&gt;Year(Subscription) as Year,&lt;/P&gt;&lt;P&gt;Month(Subscription) as Month&lt;/P&gt;&lt;P&gt;RESIDENT Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However QV scripting is still misterious to me...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 May 2011 07:47:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-05-18T07:47:47Z</dc:date>
    <item>
      <title>Associating data in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307054#M1198795</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 think this is a very basic question. I have the following table in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;idContact, Subscription&lt;/P&gt;&lt;P&gt;1, 04/01/2007&lt;/P&gt;&lt;P&gt;2, 12/05/2007&lt;/P&gt;&lt;P&gt;3, 15/07/2008&lt;/P&gt;&lt;P&gt;4, 30/07/2008&lt;/P&gt;&lt;P&gt;5, 07/08/2008&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I want to make a new field for Year and one for Month. I did it in the script as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Year(Subscription) as Year,&lt;/P&gt;&lt;P&gt;Month(Subscription) as Month&lt;/P&gt;&lt;P&gt;RESIDENT Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I wish that Year and Month were associated with the Subscription date, which are not in my example (while a calculated dimension Year(Subscription) in a chart is associated)....&lt;/P&gt;&lt;P&gt;Can anyone tell me what I'm missing? Is there a nice tutorial to QV scripting available somewhere (one which is not 500 pages long...)?&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2011 07:32:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307054#M1198795</guid>
      <dc:creator />
      <dc:date>2011-05-18T07:32:57Z</dc:date>
    </item>
    <item>
      <title>Associating data in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307055#M1198796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Subscription, &lt;/P&gt;&lt;P&gt;Year(Subscription) as Year,&lt;/P&gt;&lt;P&gt;Month(Subscription) as Month&lt;/P&gt;&lt;P&gt;RESIDENT Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However QV scripting is still misterious to me...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2011 07:47:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307055#M1198796</guid>
      <dc:creator />
      <dc:date>2011-05-18T07:47:47Z</dc:date>
    </item>
    <item>
      <title>Associating data in the script</title>
      <link>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307056#M1198797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Try This:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data0:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;idContact, SubscriptionDate&lt;/P&gt;&lt;P&gt;1, 04/01/2007&lt;/P&gt;&lt;P&gt;2, 12/05/2007&lt;/P&gt;&lt;P&gt;3, 15/07/2008&lt;/P&gt;&lt;P&gt;4, 30/07/2008&lt;/P&gt;&lt;P&gt;5, 07/08/2008&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Year(SubscriptionDate) as Year,&lt;/P&gt;&lt;P&gt;Month(SubscriptionDate) as Month,&lt;/P&gt;&lt;P&gt;SubscriptionDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESIDENT Data0;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2011 07:52:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Associating-data-in-the-script/m-p/307056#M1198797</guid>
      <dc:creator />
      <dc:date>2011-05-18T07:52:22Z</dc:date>
    </item>
  </channel>
</rss>

