<?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: Tables box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568949#M685741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naden, Please find the below script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// First Join all the tables from the files&lt;/P&gt;&lt;P&gt;TEMP:&lt;/P&gt;&lt;P&gt;LOAD BP_ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; PERSON_TYPE ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOMI_COUNTRY &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\vmware-host\Shared Folders\3- Prototype\DB xls data\tmp_bsm_bp.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is tmp_bsm_bp$);&lt;/P&gt;&lt;P&gt;Inner Join (TEMP) &lt;/P&gt;&lt;P&gt;LOAD REF_smalldatetime ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; QTY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; CURR_VAL_POS ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; CURR_POS_REF_CURRY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; BP_ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASSET_ID &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\vmware-host\Shared Folders\3- Prototype\DB xls data\tmp_bsm_positions.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is tmp_bsm_positions$);&lt;/P&gt;&lt;P&gt;Inner Join (TEMP)&lt;/P&gt;&lt;P&gt;LOAD ASS_GROUP ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASS_TYPE ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASSET_ID&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\vmware-host\Shared Folders\3- Prototype\DB xls data\tmp_bsm_assets.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is tmp_bsm_assets$);&lt;/P&gt;&lt;P&gt;// Calulate the sum's&lt;/P&gt;&lt;P&gt;FINAL:&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;LOAD BP_ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; PERSON_TYPE ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOMI_COUNTRY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; REF_smalldatetime ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sum(QTY) AS QTY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sum(CURR_VAL_POS) AS CURR_VAL_POS ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; CURR_POS_REF_CURRY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASS_GROUP ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASS_TYPE &lt;/P&gt;&lt;P&gt;Resident TEMP&amp;nbsp; &lt;/P&gt;&lt;P&gt;Where SUM(QTY) &amp;lt;&amp;gt; 0&lt;/P&gt;&lt;P&gt;Group By BP_ID , PERSON_TYPE , REF_smalldatetime , CURR_POS_REF_CURRY , ASS_GROUP , ASS_TYPE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table TEMP;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 26 Jan 2014 14:46:37 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-26T14:46:37Z</dc:date>
    <item>
      <title>Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568940#M685732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #000000; text-align: -webkit-auto; font-family: 'Lucida Grande';"&gt;Hi, &lt;/P&gt;&lt;P style="color: #000000; text-align: -webkit-auto; font-family: 'Lucida Grande';"&gt;I need help with creating a table out of data from 3 tables.&lt;/P&gt;&lt;P style="color: #000000; text-align: -webkit-auto; font-family: 'Lucida Grande';"&gt;I loaded the 3 excel files with the tables needed &lt;/P&gt;&lt;P style="color: #000000; text-align: -webkit-auto; font-family: 'Lucida Grande';"&gt;but when I create the table box the data I want to be shown does not show. &lt;/P&gt;&lt;P style="color: #000000; text-align: -webkit-auto; font-family: 'Lucida Grande';"&gt;Basically I have 3 tabloids A,B,C&lt;/P&gt;&lt;P style="color: #000000; text-align: -webkit-auto; font-family: 'Lucida Grande';"&gt;and I want to show in the table box the following SQL query:&lt;/P&gt;&lt;P style="color: #000000; font-family: Noteworthy-Light; font-size: 15px; text-align: -webkit-auto;"&gt;&lt;/P&gt;&lt;P&gt;SELECT B.field1,&lt;/P&gt;&lt;P&gt;A.field1,&lt;/P&gt;&lt;P&gt;A.field2,&lt;/P&gt;&lt;P&gt;A.field3,&lt;/P&gt;&lt;P&gt;SUM(B.field2) ,&lt;/P&gt;&lt;P&gt;SUM(B.field3) ,&lt;/P&gt;&lt;P&gt;B.field4,&lt;/P&gt;&lt;P&gt;C.field1,&lt;/P&gt;&lt;P&gt;C.field2,&lt;/P&gt;&lt;P&gt;FROM A, B, C&lt;/P&gt;&lt;P&gt;WHERE 1 = 1&lt;/P&gt;&lt;P&gt;AND A.field1 = B.field5&lt;/P&gt;&lt;P&gt;AND B.field6 = C.field3&lt;/P&gt;&lt;P&gt;GROUP BY B.field1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.field1,&lt;/P&gt;&lt;P&gt;A.field2,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.field3,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B.field4,&lt;/P&gt;&lt;P&gt;C.field1,&lt;/P&gt;&lt;P&gt;C.field2,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HAVING SUM(B..field2) &amp;lt;&amp;gt; 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 17:32:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568940#M685732</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-25T17:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568941#M685733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can transform this query using Qlikview script. &lt;/P&gt;&lt;P&gt;Finaltable:&lt;/P&gt;&lt;P&gt;Load * ;&lt;/P&gt;&lt;P&gt;SQL &lt;/P&gt;&lt;P&gt;Select * &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM A, B, C&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE 1 = 1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND A.field1 = B.field5&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND B.field6 = C.field3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;And then you use Group by using Finaltable created in qlikview or&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;You can load each table and then join or concatenate it to create one table.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FinalTable:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load *;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Select * from A;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;concatenate&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load *;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Select * from B;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;concatenate&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load *;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Select * from C;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Then you can use it for further calculations.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The above is just a sample script. Hope it is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 18:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568941#M685733</guid>
      <dc:creator />
      <dc:date>2014-01-25T18:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568942#M685734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nadeen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it is possible but instead of "table box" use "straight table" in Qlikview&lt;/P&gt;&lt;P&gt;something like &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;field1, (Dimension)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;field2, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(Dimension)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;field3, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(Dimension)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SUM(field2) , &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(Expression)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SUM(field3) , &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(Expression)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;field4&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(Dimension)&lt;/SPAN&gt; etc...&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope this will help you..&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;-Yojas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 18:11:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568942#M685734</guid>
      <dc:creator />
      <dc:date>2014-01-25T18:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568943#M685735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help. &lt;/P&gt;&lt;P&gt;I tried to implement what you mentioned&amp;nbsp; but it did not work &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 19:31:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568943#M685735</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-25T19:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568944#M685736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;I did what you mentioned and it kind of worked but no completely. &lt;/P&gt;&lt;P&gt;The first part, I got correctly, but the table does not get the complete correct results &lt;/P&gt;&lt;P&gt;because s&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ome of the fields have the same labels in two tables that is why I need to specify this to be able to choose just the data that is found in exactly the two fields:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE 1 = 1&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND A.field1 = B.field5&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND B.field6 = C.field3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Group by ..&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;….&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;HAVING SUM(B..field2) &amp;lt;&amp;gt; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;is it possible to implement it in the straight table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jan 2014 19:35:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568944#M685736</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-25T19:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568945#M685737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nadeen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it is possible.. If you do something like, &lt;/P&gt;&lt;P&gt;Store value of Field5 in some variable (v_Field5)&lt;/P&gt;&lt;P&gt;then in the set expression pass that value to Field 1 and using AGGR() function you can Group By it with the respective dimension (Field).&lt;/P&gt;&lt;P&gt;Try this and if it is not working then send me some sample... I'll do it for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Yojas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 11:22:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568945#M685737</guid>
      <dc:creator />
      <dc:date>2014-01-26T11:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568946#M685738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nadeen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow the link below Henric Cronstrom gives detail info how to merge data for multiple datasources&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2014/01/14/merging-data"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2014/01/14/merging-data&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 14:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568946#M685738</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T14:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568947#M685739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nadeen, You query looks good and this query is executed in Qlikview without errors ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your qvw, you have synn keys, So please drop unnecessary fields or concatenate the tables to avoid the synn keys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 14:21:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568947#M685739</guid>
      <dc:creator />
      <dc:date>2014-01-26T14:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568948#M685740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Yes it runs without errors but the data just doesn't show on the straight table when selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I tried concatenating the tables but I had an error and with removing unnecessary fields nothing changes as well &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 14:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568948#M685740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T14:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568949#M685741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naden, Please find the below script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// First Join all the tables from the files&lt;/P&gt;&lt;P&gt;TEMP:&lt;/P&gt;&lt;P&gt;LOAD BP_ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; PERSON_TYPE ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOMI_COUNTRY &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\vmware-host\Shared Folders\3- Prototype\DB xls data\tmp_bsm_bp.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is tmp_bsm_bp$);&lt;/P&gt;&lt;P&gt;Inner Join (TEMP) &lt;/P&gt;&lt;P&gt;LOAD REF_smalldatetime ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; QTY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; CURR_VAL_POS ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; CURR_POS_REF_CURRY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; BP_ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASSET_ID &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\vmware-host\Shared Folders\3- Prototype\DB xls data\tmp_bsm_positions.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is tmp_bsm_positions$);&lt;/P&gt;&lt;P&gt;Inner Join (TEMP)&lt;/P&gt;&lt;P&gt;LOAD ASS_GROUP ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASS_TYPE ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASSET_ID&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\vmware-host\Shared Folders\3- Prototype\DB xls data\tmp_bsm_assets.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is tmp_bsm_assets$);&lt;/P&gt;&lt;P&gt;// Calulate the sum's&lt;/P&gt;&lt;P&gt;FINAL:&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;LOAD BP_ID ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; PERSON_TYPE ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOMI_COUNTRY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; REF_smalldatetime ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sum(QTY) AS QTY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sum(CURR_VAL_POS) AS CURR_VAL_POS ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; CURR_POS_REF_CURRY ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASS_GROUP ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASS_TYPE &lt;/P&gt;&lt;P&gt;Resident TEMP&amp;nbsp; &lt;/P&gt;&lt;P&gt;Where SUM(QTY) &amp;lt;&amp;gt; 0&lt;/P&gt;&lt;P&gt;Group By BP_ID , PERSON_TYPE , REF_smalldatetime , CURR_POS_REF_CURRY , ASS_GROUP , ASS_TYPE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table TEMP;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 14:46:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568949#M685741</guid>
      <dc:creator />
      <dc:date>2014-01-26T14:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568950#M685742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Thank you very much it finally worked correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I eliminated the undeeded fields like you mentioned&amp;nbsp; and used the script you gave me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much once again. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 14:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568950#M685742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-26T14:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Tables box</title>
      <link>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568951#M685743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your welcome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jan 2014 14:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tables-box/m-p/568951#M685743</guid>
      <dc:creator />
      <dc:date>2014-01-26T14:53:49Z</dc:date>
    </item>
  </channel>
</rss>

