<?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 Problem with synthetic Keys in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-synthetic-Keys/m-p/326487#M120204</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have three tables T1,T2,T3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In all the above tables I have a month and day fields( Field names are different)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am loading the data and I have two list boxes for Month and Day and the fields selected in the boxes are from T1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i having two bar charts which will have data from T2 and T3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have selected month and Day from list boxes which will be reflecting in the current selection box also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the bar chart values are not filering based on the selection (Because the fields for month and Day is different in these tables)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having some issues in using the synthetic key.So I am not supposed to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without synthetic key how it is possible to change the chart values depending on the selection?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody have any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Praveena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jun 2011 10:47:44 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-06-28T10:47:44Z</dc:date>
    <item>
      <title>Problem with synthetic Keys</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-synthetic-Keys/m-p/326487#M120204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have three tables T1,T2,T3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In all the above tables I have a month and day fields( Field names are different)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am loading the data and I have two list boxes for Month and Day and the fields selected in the boxes are from T1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i having two bar charts which will have data from T2 and T3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have selected month and Day from list boxes which will be reflecting in the current selection box also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the bar chart values are not filering based on the selection (Because the fields for month and Day is different in these tables)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having some issues in using the synthetic key.So I am not supposed to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without synthetic key how it is possible to change the chart values depending on the selection?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody have any idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please share...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Praveena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 10:47:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-synthetic-Keys/m-p/326487#M120204</guid>
      <dc:creator />
      <dc:date>2011-06-28T10:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with synthetic Keys</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-synthetic-Keys/m-p/326488#M120205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Praveena,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If two tables must be affected by the same date selection, they may be joined or concatenated. Try renaming in both tables day and month fields and concatenate both tables, the chart should work now with one listbox for the day and another for the month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DayField AS Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthField AS Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;FROM Table1.Source;&lt;/P&gt;&lt;P&gt;CONCATENATE LOAD ID2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldDay AS Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldMonth AS Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales&lt;/P&gt;&lt;P&gt;FROM Table2.Source;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next step is to create a fact table and link it to a master calendar, but let's see if this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 11:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-synthetic-Keys/m-p/326488#M120205</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-06-28T11:45:52Z</dc:date>
    </item>
  </channel>
</rss>

