<?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 [ask] how to join two different tables of qvds into one qvd ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191131#M53331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;SPAN class="hps"&gt;Probably the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;common field&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in both tables&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;for&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the nomenclature&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is a date&lt;/SPAN&gt;&lt;SPAN&gt;, they tend to&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;be of&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;real&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;continuous data&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;whether&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;whole or&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;chains&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;become&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;probably&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;summarizes the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="hps"&gt;I hope&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;you&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;work&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Mar 2012 23:47:42 GMT</pubDate>
    <dc:creator>beristardj</dc:creator>
    <dc:date>2012-03-07T23:47:42Z</dc:date>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191125#M53325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm still new in qlikview and need some support&lt;/P&gt;&lt;P&gt;i've made a few of qvds&lt;/P&gt;&lt;P&gt;and i want to join two qvds into 1 qvds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in database statement (example, sql server), i'll easily use :&lt;/P&gt;&lt;P&gt;select a.*, b.*&lt;/P&gt;&lt;P&gt;from tes1 a, tes2 b&lt;/P&gt;&lt;P&gt;where a.field1=b.field2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how i can do that in edit script of qlikview?&lt;/P&gt;&lt;P&gt;is there any example of file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i really need helps here..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many many thx...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 13:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191125#M53325</guid>
      <dc:creator />
      <dc:date>2010-09-07T13:10:27Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191126#M53326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;The solution is something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;FinalTable:&lt;BR /&gt;LOAD Field_1 as CommonField,&lt;BR /&gt; Value&lt;BR /&gt;FROM file_1.qvd&lt;BR /&gt;(qvd);&lt;BR /&gt;INNER JOIN&lt;BR /&gt;LOAD Field_2 as CommonField,&lt;BR /&gt; Value2&lt;BR /&gt;FROM file_2.qvd&lt;BR /&gt;(qvd);&lt;BR /&gt;store FinalTable into Final.qvd;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I hope it helps you.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 13:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191126#M53326</guid>
      <dc:creator />
      <dc:date>2010-09-07T13:22:17Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191127#M53327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use it like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;select a.*, b.*&lt;/P&gt;&lt;P&gt;from tes1 a, tes2 b&lt;/P&gt;&lt;P&gt;where a.field1=b.field2;&lt;/P&gt;&lt;P&gt;This will give you the desired result as it was working in SQL database.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj Kishor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 13:44:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191127#M53327</guid>
      <dc:creator />
      <dc:date>2010-09-07T13:44:45Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191128#M53328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx miquel it work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i try it from 1 table, it doesn't work&lt;/P&gt;&lt;P&gt;i did this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;join_table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD MST_SAHAM_CODE as kode_saham,&lt;/P&gt;&lt;P&gt;date(TRANS_SAHAM_DATE) as date_saham,&lt;/P&gt;&lt;P&gt;if(isnull(TRANS_SAHAM_VOLUME),0,TRANS_SAHAM_VOLUME) as volume&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;LOAD MST_SAHAM_CODE as kode_saham_yest,&lt;/P&gt;&lt;P&gt;date(TRANS_SAHAM_DATE+1) as date_saham,&lt;/P&gt;&lt;P&gt;if(isnull(TRANS_SAHAM_VOLUME),0,TRANS_SAHAM_VOLUME) as volume_yest&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it got freeze&lt;/P&gt;&lt;P&gt;and an error pop up&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why does it happen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Sep 2010 03:54:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191128#M53328</guid>
      <dc:creator />
      <dc:date>2010-09-08T03:54:52Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191129#M53329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;I understand you are trying to join your qvds using date_saham field, and that's correct, It should work, could you attach the error message what you get?&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 12:56:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191129#M53329</guid>
      <dc:creator />
      <dc:date>2010-09-09T12:56:44Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191130#M53330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Robert,&lt;/P&gt;&lt;P&gt;Just try to change&lt;/P&gt;&lt;P&gt;date(TRANS_SAHAM_DATE+1) as date_saham,&lt;/P&gt;&lt;P&gt;this to new one&lt;/P&gt;&lt;P&gt;date(TRANS_SAHAM_DATE) + 1 as date_saham,&lt;/P&gt;&lt;P&gt;and check.&lt;/P&gt;&lt;P&gt;Hope it should work or attach the error message.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj Kishor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Sep 2010 14:02:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191130#M53330</guid>
      <dc:creator />
      <dc:date>2010-09-09T14:02:21Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191131#M53331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;SPAN class="hps"&gt;Probably the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;common field&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in both tables&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;for&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the nomenclature&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;is a date&lt;/SPAN&gt;&lt;SPAN&gt;, they tend to&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;be of&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;real&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;continuous data&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;whether&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;whole or&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;chains&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;become&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;probably&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;summarizes the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="hps"&gt;I hope&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;you&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;work&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Mar 2012 23:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191131#M53331</guid>
      <dc:creator>beristardj</dc:creator>
      <dc:date>2012-03-07T23:47:42Z</dc:date>
    </item>
    <item>
      <title>[ask] how to join two different tables of qvds into one qvd ?</title>
      <link>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191132#M53332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It "could" be that your date fields also have timestamps in them.&lt;/P&gt;&lt;P&gt;So try this (to join only the date part):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;date(floor(TRANS_SAHAM_DATE)) as date_shaham&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/21613"&gt;Magnus Åvitsland&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.framsteg.com" target="_blank"&gt;Framsteg Business Intelligence Corp.&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Mar 2012 08:55:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ask-how-to-join-two-different-tables-of-qvds-into-one-qvd/m-p/191132#M53332</guid>
      <dc:creator>magavi_framsteg</dc:creator>
      <dc:date>2012-03-08T08:55:17Z</dc:date>
    </item>
  </channel>
</rss>

