<?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 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942294#M645375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thks for reply;&lt;/P&gt;&lt;P&gt;It's was the first thing i did but it doesn't work anymore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Nov 2015 15:46:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-06T15:46:48Z</dc:date>
    <item>
      <title>Data reduction</title>
      <link>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942291#M645372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to reduce data by section access and to show all data on another field:&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;Star is *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;ACCESS,USERID,PASSWORD,AGENCE,YEAR&lt;/P&gt;&lt;P&gt;ADMIN,AGBRT,toto,AGBRT,*&lt;/P&gt;&lt;P&gt;USER,IDF,titi,IDF,*&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;Produit:&lt;/P&gt;&lt;P&gt;load * inline &lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;AGENCE,Produit,YEAR&lt;/P&gt;&lt;P&gt;AGBRT,XXX,2014&lt;/P&gt;&lt;P&gt;AGBRT,XXS,2015&lt;/P&gt;&lt;P&gt;AGBRT,XXL,2013&lt;/P&gt;&lt;P&gt;AGBRT,XZX,2011&lt;/P&gt;&lt;P&gt;IDF,UUP,2014&lt;/P&gt;&lt;P&gt;IDF,UUZP,2014&lt;/P&gt;&lt;P&gt;IDF,UUSP,2012&lt;/P&gt;&lt;P&gt;IDF,UUFP,2010&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendrier:&lt;/P&gt;&lt;P&gt;load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;YEAR&lt;/P&gt;&lt;P&gt;2010&lt;/P&gt;&lt;P&gt;2011&lt;/P&gt;&lt;P&gt;2012&lt;/P&gt;&lt;P&gt;2013&lt;/P&gt;&lt;P&gt;2014&lt;/P&gt;&lt;P&gt;2015&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example i want to reduce data on AGENCE field but i want to show all YEAR even if i don't have data ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 09:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942291#M645372</guid>
      <dc:creator />
      <dc:date>2015-11-05T09:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data reduction</title>
      <link>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942292#M645373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That should be possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your section access table won't work though. The star will allow access to all listed values. In your table no values are listed. So the * will allow access to nothing. Simply leave YEAR out completely and you'll get all values available.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 14:31:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942292#M645373</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-11-06T14:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data reduction</title>
      <link>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942293#M645374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe remove the YEAR from the section access table and add this at the end of the section application:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TMP:&lt;/P&gt;&lt;P&gt;LOAD YEAR&lt;/P&gt;&lt;P&gt;RESIDENT Calendrier;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN (TMP)&lt;/P&gt;&lt;P&gt;LOAD AGENCE, AGENCE AS CHECK RESIDENT Produit&lt;/P&gt;&lt;P&gt;WHERE NOT EXISTS(CHECK, AGENCE);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP FIELD CHECK;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Produit)&lt;/P&gt;&lt;P&gt;LOAD AGENCE, YEAR 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;edit:&lt;/P&gt;&lt;P&gt;CONCATENATE &lt;STRONG&gt;(Produit) &lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 14:38:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942293#M645374</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-06T14:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Data reduction</title>
      <link>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942294#M645375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thks for reply;&lt;/P&gt;&lt;P&gt;It's was the first thing i did but it doesn't work anymore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 15:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942294#M645375</guid>
      <dc:creator />
      <dc:date>2015-11-06T15:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data reduction</title>
      <link>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942295#M645376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 15:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-reduction/m-p/942295#M645376</guid>
      <dc:creator />
      <dc:date>2015-11-06T15:57:31Z</dc:date>
    </item>
  </channel>
</rss>

