<?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 connecting tables made with linked key fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413142#M820110</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(new to qlik, coming from the ACL world.&amp;nbsp; sorry if this is remedial)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my boss made me an excel file which has the keys/unique fields for every other table.&amp;nbsp; I need to read this in and then read in (and i'll do it manually since i'm short on time) all these other tables.&amp;nbsp; how do I link them, through the unique field key table which has all unique fields, in qlik where table A will have the unique key ABC and then data for ABC and table B will have unique key of DEF and data for it, and we want to be able to link them of table A-&amp;gt;key table for key for A, B-&amp;gt;table B, to on the fly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;becki kain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>becki_kain</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>connecting tables made with linked key fields</title>
      <link>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413142#M820110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(new to qlik, coming from the ACL world.&amp;nbsp; sorry if this is remedial)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my boss made me an excel file which has the keys/unique fields for every other table.&amp;nbsp; I need to read this in and then read in (and i'll do it manually since i'm short on time) all these other tables.&amp;nbsp; how do I link them, through the unique field key table which has all unique fields, in qlik where table A will have the unique key ABC and then data for ABC and table B will have unique key of DEF and data for it, and we want to be able to link them of table A-&amp;gt;key table for key for A, B-&amp;gt;table B, to on the fly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;becki kain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413142#M820110</guid>
      <dc:creator>becki_kain</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: connecting tables made with linked key fields</title>
      <link>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413143#M820111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can make use of aliasing (refer below sample script):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15029504041581628 jive_text_macro" jivemacro_uid="_15029504041581628"&gt;
&lt;P&gt;A:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;ABC, Id&lt;/P&gt;
&lt;P&gt;123, 1&lt;/P&gt;
&lt;P&gt;456, 4&lt;/P&gt;
&lt;P&gt;789, 7&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;B:&lt;/P&gt;
&lt;P&gt;LOAD DEF AS ABC, Value INLINE [&lt;/P&gt;
&lt;P&gt;DEF, Value&lt;/P&gt;
&lt;P&gt;123, 1000&lt;/P&gt;
&lt;P&gt;456, 4000&lt;/P&gt;
&lt;P&gt;789, 7000&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Rahul Pawar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 06:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413143#M820111</guid>
      <dc:creator>rahulpawarb</dc:creator>
      <dc:date>2017-08-17T06:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: connecting tables made with linked key fields</title>
      <link>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413144#M820112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what I had to do was create the inner table then the "spokes" had the same header field so qlik automatically linked all the tables.&amp;nbsp; What I did was then create bar charts with "date" (not date time, 500 per day) on the X axis and stacked bar charts on the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I change scales though - where one measurement is "available megabytes" and one is "% of total page space"?&amp;nbsp; the scales are completely off, of each other, so how do I scale down one, so the bar charts are meaningful?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;becki kain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2017 19:33:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/connecting-tables-made-with-linked-key-fields/m-p/1413144#M820112</guid>
      <dc:creator>becki_kain</dc:creator>
      <dc:date>2017-08-17T19:33:36Z</dc:date>
    </item>
  </channel>
</rss>

