<?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 Creating a set of data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191466#M53538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls give structure of budget, payment and dateisland tables...&lt;/P&gt;&lt;P&gt;i think you ve date field also in Payment table...in that case, you can use sm functions like month()or monthname() to get the month number and month name and u can use sum() to get payment for a particular selected year...&lt;/P&gt;&lt;P&gt;after that you can take monthname as a dimension in qv chart,&lt;/P&gt;&lt;P&gt;if you ve selected two years, then you can take monthname() as dimension,,,it will give like Jan 2009, Jan 2010 etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Mar 2010 09:44:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-24T09:44:23Z</dc:date>
    <item>
      <title>Creating a set of data</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191465#M53537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have the following tables in qlikview&lt;/P&gt;&lt;P&gt;budget&lt;/P&gt;&lt;P&gt;payment&lt;/P&gt;&lt;P&gt;dateisland - a listing of all dates including month and year that are in either the budget or payment table.&lt;/P&gt;&lt;P&gt;What I would like to do is create a set of data containing the following columns:&lt;/P&gt;&lt;P&gt;month name, month number, sum(payment)&lt;/P&gt;&lt;P&gt;Here's the twist ... I would like the set(s) to be as follows&lt;/P&gt;&lt;P&gt;1|jan|sum(payments in jan)&lt;/P&gt;&lt;P&gt;2|feb|0&lt;/P&gt;&lt;P&gt;3|mar|0&lt;/P&gt;&lt;P&gt;... until dec.&lt;/P&gt;&lt;P&gt;1|jan|sum(payments in jan)&lt;/P&gt;&lt;P&gt;2|feb|sum(payments in feb)&lt;/P&gt;&lt;P&gt;3|mar|0&lt;/P&gt;&lt;P&gt;... until dec.&lt;/P&gt;&lt;P&gt;1|jan|sum(payments in jan)&lt;/P&gt;&lt;P&gt;2|feb|sum(payments in feb)&lt;/P&gt;&lt;P&gt;3|mar|sum(payments in mar)&lt;/P&gt;&lt;P&gt;4|apr|0&lt;/P&gt;&lt;P&gt;... until dec&lt;/P&gt;&lt;P&gt;and continue this pattern for all months in a selected year.&lt;/P&gt;&lt;P&gt;In SQL, not a problem, (lengthy, but possible). My question is how can this be done in qlikview either in the script or via set analysis?&lt;/P&gt;&lt;P&gt;Thanks in advance for any help/suggestions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 09:29:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191465#M53537</guid>
      <dc:creator />
      <dc:date>2010-03-24T09:29:08Z</dc:date>
    </item>
    <item>
      <title>Creating a set of data</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191466#M53538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls give structure of budget, payment and dateisland tables...&lt;/P&gt;&lt;P&gt;i think you ve date field also in Payment table...in that case, you can use sm functions like month()or monthname() to get the month number and month name and u can use sum() to get payment for a particular selected year...&lt;/P&gt;&lt;P&gt;after that you can take monthname as a dimension in qv chart,&lt;/P&gt;&lt;P&gt;if you ve selected two years, then you can take monthname() as dimension,,,it will give like Jan 2009, Jan 2010 etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 09:44:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191466#M53538</guid>
      <dc:creator />
      <dc:date>2010-03-24T09:44:23Z</dc:date>
    </item>
    <item>
      <title>Creating a set of data</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191467#M53539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Here is a simplified structure of the budget and payment tables.&lt;/P&gt;&lt;P&gt;Budget&lt;/P&gt;&lt;P&gt;budgLine|budgetedDate|budgetedAmount|budgetDateIdentifier&lt;/P&gt;&lt;P&gt;Payment&lt;/P&gt;&lt;P&gt;budgLine|paymentid|paymentdate|paymentAmount|payDateIdentifier&lt;/P&gt;&lt;P&gt;dateisland&lt;/P&gt;&lt;P&gt;dateidentifier&lt;/P&gt;&lt;P&gt;year&lt;/P&gt;&lt;P&gt;monthnumber&lt;/P&gt;&lt;P&gt;monthname&lt;/P&gt;&lt;P&gt;All of the report works well, it is just trying to create the set of data that has been requested which is causing me some issues.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 09:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191467#M53539</guid>
      <dc:creator />
      <dc:date>2010-03-24T09:52:20Z</dc:date>
    </item>
    <item>
      <title>Creating a set of data</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191468#M53540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So u ve paymentDate in Payment table&lt;/P&gt;&lt;P&gt;u can use Year(paymentDate), month(paymentDate), and Monthname(paymentDate) to create 3 more fields into script.&lt;/P&gt;&lt;P&gt;Then u can use Monthname(paymentDate) as a dimension and sum(paymentAmt) as a expression in a chart.&lt;/P&gt;&lt;P&gt;You can give a selection for Year(paymentDate) at UI level.&lt;/P&gt;&lt;P&gt;As soon as u select a year, all months from that year will be there in the chart showing sum of payments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 10:01:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191468#M53540</guid>
      <dc:creator />
      <dc:date>2010-03-24T10:01:06Z</dc:date>
    </item>
    <item>
      <title>Creating a set of data</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191469#M53541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;Unfortunately, i am trying to animate a year's payments which is why I need to create the set of data as I described in my original post.&lt;/P&gt;&lt;P&gt;I do know that I could draw the chart as you outline above, but in this case, it is a rather special request/requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-set-of-data/m-p/191469#M53541</guid>
      <dc:creator />
      <dc:date>2010-03-25T09:37:26Z</dc:date>
    </item>
  </channel>
</rss>

