<?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 How to link data from 2 data sources in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214346#M67898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to pull the data from 2 data sources and should link them finally. For example, I have MONTH NAME field in a table from one data source and MONTH NUMBER field in a table from another data source. Finally If i want to click a value in MONTH NUMBER that should display the associated value in MONTH NAME.&lt;/P&gt;&lt;P&gt;How can i link the data coming from different data sources ??&lt;/P&gt;&lt;P&gt;Your suggestions will be highly appreciated.&lt;/P&gt;&lt;P&gt;Many Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Dec 2010 18:44:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-06T18:44:23Z</dc:date>
    <item>
      <title>How to link data from 2 data sources</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214346#M67898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to pull the data from 2 data sources and should link them finally. For example, I have MONTH NAME field in a table from one data source and MONTH NUMBER field in a table from another data source. Finally If i want to click a value in MONTH NUMBER that should display the associated value in MONTH NAME.&lt;/P&gt;&lt;P&gt;How can i link the data coming from different data sources ??&lt;/P&gt;&lt;P&gt;Your suggestions will be highly appreciated.&lt;/P&gt;&lt;P&gt;Many Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 18:44:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214346#M67898</guid>
      <dc:creator />
      <dc:date>2010-12-06T18:44:23Z</dc:date>
    </item>
    <item>
      <title>How to link data from 2 data sources</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214347#M67899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To link fields in QlikView, give them the same name. This will then function similar to a Join in more traditional SQL.&lt;/P&gt;&lt;P&gt;In your case, you also need to convert the fields to the same value type. Depending on what you have your months stored as you may need: Num(MonthName), MonthName(MonthNum) or a Case statement to manually convert them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 18:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214347#M67899</guid>
      <dc:creator />
      <dc:date>2010-12-06T18:48:59Z</dc:date>
    </item>
    <item>
      <title>How to link data from 2 data sources</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214348#M67900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miller&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Can you please give me a clear example how can i do it in QV script ??&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 18:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214348#M67900</guid>
      <dc:creator />
      <dc:date>2010-12-06T18:52:20Z</dc:date>
    </item>
    <item>
      <title>How to link data from 2 data sources</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214349#M67901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;You can rename them in the loading script by adding &lt;I&gt;"&lt;B&gt;as&lt;/B&gt; NewName"&lt;/I&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;Month as Monthnumber,&lt;BR /&gt;NameMonth,&lt;BR /&gt;FROM Database1;&lt;BR /&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;Number as Monthnumber,&lt;BR /&gt;Data&lt;BR /&gt;FROM Database2;&lt;BR /&gt;&lt;BR /&gt;This will link the fields Monthnumber in both tables&lt;BR /&gt;&lt;BR /&gt;If you need more help just upload your Qlikview file and I will see what I can do for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Dec 2010 12:39:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214349#M67901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-12-07T12:39:43Z</dc:date>
    </item>
    <item>
      <title>How to link data from 2 data sources</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214350#M67902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dennis !&lt;/P&gt;&lt;P&gt;Now i got the concept how to link the data from different sources.&lt;/P&gt;&lt;P&gt;Many thanks for your suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 10:47:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-link-data-from-2-data-sources/m-p/214350#M67902</guid>
      <dc:creator />
      <dc:date>2010-12-08T10:47:37Z</dc:date>
    </item>
  </channel>
</rss>

