<?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 Qlikview Improvement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230968#M82747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all of you for a quick response.&lt;/P&gt;&lt;P&gt;Actually my dashboard works fine.&lt;/P&gt;&lt;P&gt;I was seeing I can use a function like "outer" I think this could very useful.&lt;/P&gt;&lt;P&gt;Thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Mar 2011 13:25:59 GMT</pubDate>
    <dc:creator>pgalvezt</dc:creator>
    <dc:date>2011-03-01T13:25:59Z</dc:date>
    <item>
      <title>Qlikview Improvement</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230964#M82743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!! I´ve working with twelve reports with many columns each one and I've using almost 7 of them. Basically the idea is to do a clik on a particular date and change all charts and values (in one clic) I left you a sample for better explanation. And How can I realize a better optimization of this. Thanks... If you have question just let me know...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Feb 2011 15:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230964#M82743</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-02-25T15:58:46Z</dc:date>
    </item>
    <item>
      <title>Qlikview Improvement</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230965#M82744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 15:15:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230965#M82744</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-02-28T15:15:43Z</dc:date>
    </item>
    <item>
      <title>Re:Qlikview Improvement</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230966#M82745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pablo,&lt;/P&gt;&lt;P&gt;This is my offer (schema)&lt;/P&gt;&lt;P&gt;Create a .qvw with calendar, with a button ... when press open your .qvw (with reports) pass date as parm, you .qvw must contains module deploy&lt;/P&gt;&lt;P&gt;Module deploy is based in a sheet excel (object id ej. CH01; user id; route ej. email, export; bookmark id) all this with set of macros&lt;/P&gt;&lt;P&gt;Good luck, Luis&lt;/P&gt;&lt;P&gt;chi, chi Viva Chile¡¡&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 19:24:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230966#M82745</guid>
      <dc:creator>llauses243</dc:creator>
      <dc:date>2011-02-28T19:24:30Z</dc:date>
    </item>
    <item>
      <title>Qlikview Improvement</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230967#M82746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I may be missing something but it looks like your biggest performance hit is coming from your synthetic table. I'd take care of that before worrying about the clicking on one date.&lt;/P&gt;&lt;P&gt;Here's my suggestion:&lt;/P&gt;&lt;P&gt;1. Place a QUALIFY statement in front of each of the tables. This adds the table name to the beginning of each of your column names and eliminates your synthetic table.&lt;/P&gt;&lt;P&gt;2. Run multiple columns together to create a common key for each table. Forgive me for only speaking English and not using your column names, but an example would be&lt;/P&gt;&lt;P&gt;TABLE_NAME_DATE&amp;amp;','&amp;amp;TABLE_NAME_POLICY_NUMBER&amp;amp;','&amp;amp;AUTOHASHNUMBER128(DATE&amp;amp;','POLICY_NUMBER) AS TABLE_NAME_COMMON_KEY&lt;/P&gt;&lt;P&gt;3. In separate table&lt;/P&gt;&lt;P&gt;RESIDENT LOAD SUBFIELD(TABLE_NAME_COMMON_KEY, ",",1) AS DATE,&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;RESIDENT LOAD SUBFIELD(TABLE_NAME_COMMON_KEY_2, ",",1) AS DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would give you a table with all your keys that you wouldn't have to store, get rid of your synthetic table and give you a common DATE selection across the entire document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Feb 2011 23:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230967#M82746</guid>
      <dc:creator />
      <dc:date>2011-02-28T23:01:09Z</dc:date>
    </item>
    <item>
      <title>Qlikview Improvement</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230968#M82747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all of you for a quick response.&lt;/P&gt;&lt;P&gt;Actually my dashboard works fine.&lt;/P&gt;&lt;P&gt;I was seeing I can use a function like "outer" I think this could very useful.&lt;/P&gt;&lt;P&gt;Thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Mar 2011 13:25:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-Improvement/m-p/230968#M82747</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2011-03-01T13:25:59Z</dc:date>
    </item>
  </channel>
</rss>

