<?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: Inner Joint is not joining rather repeating its values in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1917451#M10550</link>
    <description>&lt;P&gt;You're welcome.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Apr 2022 12:57:26 GMT</pubDate>
    <dc:creator>anthonyj</dc:creator>
    <dc:date>2022-04-12T12:57:26Z</dc:date>
    <item>
      <title>Inner Joint is not joining rather repeating its values</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1914673#M10510</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am pretty new in Qlikview. I am stuck in a problem while Loading the script. I have 2 tables with one common field 'Weather_Field'. The table that is to be joined has symbols of the values in Weather field-&lt;/P&gt;
&lt;P&gt;Weather Field&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Units&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Temperature&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *F&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Humidity&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Pressure&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Millibars&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to get the Units column of this table to be integrated to the first table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample-&lt;/P&gt;
&lt;P&gt;State&amp;nbsp; &amp;nbsp; &amp;nbsp;value&amp;nbsp; &amp;nbsp; &amp;nbsp;Weather_Field&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Albama&amp;nbsp; &amp;nbsp;5.9&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Temperature&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Alaska&amp;nbsp; &amp;nbsp; &amp;nbsp; 210&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pressure&lt;/P&gt;
&lt;P&gt;Ohio&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;19.7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Temperature&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I want the Units to be joined in this table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 18:24:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1914673#M10510</guid>
      <dc:creator>joybratas1</dc:creator>
      <dc:date>2022-04-05T18:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Joint is not joining rather repeating its values</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1914844#M10512</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/169096"&gt;@joybratas1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Instead of doing an inner join, try using the &lt;STRONG&gt;applymap()&lt;/STRONG&gt; function instead. It's faster than joining tables.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;UnitsMap:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;mapping&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;load distinct&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Weather_Field,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Units&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;from DataFile.qvd;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Weather:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;load &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Weather_Field,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;applymap('UnitsMap', Weather_Field, null()) as Unit,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;State,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;value&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;From WeatherDataFile.qvd;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Things to consider are to make sure that there is only one value for each of the categories in your Weather_Field (eg. Temperature not mapping to Fahrenheit and Celsius so as not cause duplication.&amp;nbsp; That the Weather_Field values have the same case. Either lower, upper or proper case. I noticed that your example has "Pressure" and "pressure". These won't match and would need to be cleaned first.&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Anthony&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Apr 2022 06:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1914844#M10512</guid>
      <dc:creator>anthonyj</dc:creator>
      <dc:date>2022-04-06T06:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Joint is not joining rather repeating its values</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1917204#M10542</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/1157"&gt;@anthonyj&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for saving my day.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the type errors with Pressure and pressure. The apply map function worked fine.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 06:07:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1917204#M10542</guid>
      <dc:creator>joybratas1</dc:creator>
      <dc:date>2022-04-12T06:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Inner Joint is not joining rather repeating its values</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1917451#M10550</link>
      <description>&lt;P&gt;You're welcome.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 12:57:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Inner-Joint-is-not-joining-rather-repeating-its-values/m-p/1917451#M10550</guid>
      <dc:creator>anthonyj</dc:creator>
      <dc:date>2022-04-12T12:57:26Z</dc:date>
    </item>
  </channel>
</rss>

