<?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: Data Reduction by Section Access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822397#M1046092</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to do section access correctly. I get only that particular listbox reduced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Nov 2014 19:16:16 GMT</pubDate>
    <dc:creator>reshmakala</dc:creator>
    <dc:date>2014-11-12T19:16:16Z</dc:date>
    <item>
      <title>Data Reduction by Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822395#M1046090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list box containing all the months in a year. The month field forms a relation between my current year transaction table and a time periods table. Currently we have transactions corresponding only to the last two months i.e, Oct and Nov. So when I use section access, only Oct and Nov are displayed in the list box. If I do not apply Section Access, same application shows me all the months even though there are no transactions for those months. Can any one help me with this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 19:06:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822395#M1046090</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-12T19:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Data Reduction by Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822396#M1046091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-thread-small" data-containerid="2052" data-containertype="14" data-objectid="141833" data-objecttype="1" href="http://community.qlik.com/thread/141833"&gt;http://community.qlik.com/thread/141833&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 19:13:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822396#M1046091</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-12T19:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Data Reduction by Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822397#M1046092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to do section access correctly. I get only that particular listbox reduced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 19:16:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822397#M1046092</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-11-12T19:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data Reduction by Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822398#M1046093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what you want do with this but you can try load your datefield twice in your TransactionTable (this is only to keep data as smal as possible, so cou can skip this step)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TransactionTable:&lt;/P&gt;&lt;P&gt;load*,&lt;/P&gt;&lt;P&gt;%Datekeyfield as %DateKeyTmp&lt;/P&gt;&lt;P&gt;From XY;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then resident load your reduction field (which is linked to section access) from ta table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tmp:&lt;/P&gt;&lt;P&gt;Load distinct&lt;/P&gt;&lt;P&gt;YourReductionField&lt;/P&gt;&lt;P&gt;Resident TransactionTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create the carthesian product of Missing Datekeyfield Values and your Reduction Field values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join (Tmp)&lt;/P&gt;&lt;P&gt;load distinct&lt;/P&gt;&lt;P&gt;monthstart(%Datekeyfield)&amp;nbsp; as %Datekeyfield&lt;/P&gt;&lt;P&gt;Resident YourCalendar where&amp;nbsp; %Datekeyfield &amp;gt;= makedate(year(today()),1,1) and %Datekeyfield &amp;lt;= makedate(year(today()),12,31)&amp;nbsp; and not exists (%DateKeyTmp, %Datekeyfield);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and concatenate it finally to your TA table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate (TransactionTable)&lt;/P&gt;&lt;P&gt;load*&lt;/P&gt;&lt;P&gt;Resident Tmp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Tmp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should allow you to show all month in listbox even with initial data reduction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 20:20:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Reduction-by-Section-Access/m-p/822398#M1046093</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-12T20:20:47Z</dc:date>
    </item>
  </channel>
</rss>

