<?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: chart dimension for 2nd expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350956#M130101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my application i am using section access to restrict the data on the Firm_Key in Trades table. The moment i link this table to any other table having full data, the other tables also get reduced as per the matching records of Trades table even though those tables do not have Firm_key. Hence i have kept trades table as separate without any link to full data table. If section access restrict only the records of the table having the key, then i think i can resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 15 Jul 2012 08:34:09 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-15T08:34:09Z</dc:date>
    <item>
      <title>chart dimension for 2nd expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350954#M130099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please somebody can help me with this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Master Calendar having calendar_year as column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have trades table with Trades_year as one of the column and other columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have trades_2 table with Trades_2_year as one of the column and other columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trades and Trades_2 are linked with a column called code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to prepare a chart with Trades_year as dimension and want to show sum(Trades_value) as one expression and sum(Trades_2_value) as another expression. for me sum(Trades_Value) is showing correct and Sum(Trades_2_value) is showing wrong.&lt;/P&gt;&lt;P&gt;Objective is to show yearly sum(values) from Trades and Trades_2 tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 04:49:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350954#M130099</guid>
      <dc:creator />
      <dc:date>2012-07-15T04:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: chart dimension for 2nd expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350955#M130100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your app or data model image?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have run into the classic issue of multiple, similar fact tables (Trades_1 and Trades_2 in this case) and therefore you have multiple date fields etc when you need only one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try concatenating your Trade tables together (stick one on top of the other, with all common fields aligned):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trades:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Trade 1'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TradeType &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Trades_Year&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendar_year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,*&lt;/P&gt;&lt;P&gt;FROM Trades_1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE(Trades)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Trade 2'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TradeType&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Trades_2_Year&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendar_year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,*&lt;/P&gt;&lt;P&gt;FROM Trades_2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also force the year fields to join with the calendar (I'm assuming there are no other common fields with the master calendar)&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;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 08:24:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350955#M130100</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-15T08:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: chart dimension for 2nd expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350956#M130101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my application i am using section access to restrict the data on the Firm_Key in Trades table. The moment i link this table to any other table having full data, the other tables also get reduced as per the matching records of Trades table even though those tables do not have Firm_key. Hence i have kept trades table as separate without any link to full data table. If section access restrict only the records of the table having the key, then i think i can resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 08:34:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350956#M130101</guid>
      <dc:creator />
      <dc:date>2012-07-15T08:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: chart dimension for 2nd expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350957#M130102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to create a link table with all the Firm_key and Code values etc and change your section access to look at this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should always strive to have a simple star schema for your data model and not duplicate fields that are really the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jul 2012 09:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-dimension-for-2nd-expression/m-p/350957#M130102</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-07-15T09:18:18Z</dc:date>
    </item>
  </channel>
</rss>

