<?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: Multiple joins to a code table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304277#M1187717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's probably not the most elegant solution, but you could create 3 identical tables with different field names (corresponding to each state_of_residence). Using Inlines, the structure would be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;State:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code, State_name&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AZ, Arizona&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OH, Ohio&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WY, Wyoming&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; null, None&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User_ID, Current_state_of_residence_code, Previous_state_of_residence_code, First_state_of_residence_code&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001, AZ, OH, WY&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 002, OH, null, OH&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StateC:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code as Current_state_of_residence_code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_name as Current_state_of_residence_name&lt;BR /&gt;Resident State;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StateP:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code as Previous_state_of_residence_code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_name as Previous_state_of_residence_name&lt;BR /&gt;Resident State;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;StateF:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code as First_state_of_residence_code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_name as First_state_of_residence_name&lt;BR /&gt;Resident State;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table State;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Aug 2011 19:37:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-08-26T19:37:03Z</dc:date>
    <item>
      <title>Multiple joins to a code table</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304276#M1187716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;How do I join multiple fields in a single table to a common code table?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Help!!!&amp;nbsp; I am stuck on a high visibility project.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the problem (simplified):&lt;/P&gt;&lt;P&gt;Table A has the following structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Char(3)&lt;/P&gt;&lt;P&gt;Current_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;Previous_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;First_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then there is the state code table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State_code&amp;nbsp;&amp;nbsp;&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;State_name&amp;nbsp;&amp;nbsp; Varchar(100)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All three of the the attributes in Table A&lt;/P&gt;&lt;P&gt;relate (are joined to) the same state code table values.&lt;/P&gt;&lt;P&gt;Since the names of the attributes are not the same, QV does not make the join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was instructed to do the following to the state code table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current_state_of_residence_code&amp;nbsp;&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;Previous_state_of_residence_code&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;First_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp; Char(2)&lt;/P&gt;&lt;P&gt;State_name&amp;nbsp; Varchar(100)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where the three values in each row are identical:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Table A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;User_ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001&amp;nbsp;&amp;nbsp; 002&lt;/P&gt;&lt;P&gt;Current_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp; AZ&amp;nbsp;&amp;nbsp;&amp;nbsp; OH&lt;/P&gt;&lt;P&gt;Previous_state_of_residence_code&amp;nbsp; OH&amp;nbsp;&amp;nbsp;&amp;nbsp; null&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;First_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WY&amp;nbsp;&amp;nbsp; OH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;State code table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Current_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp; AZ&amp;nbsp;&amp;nbsp;&amp;nbsp; OH&amp;nbsp;&amp;nbsp; WY&lt;/P&gt;&lt;P&gt;Previous_state_of_residence_code&amp;nbsp; AZ&amp;nbsp;&amp;nbsp;&amp;nbsp; OH&amp;nbsp;&amp;nbsp; WY&lt;/P&gt;&lt;P&gt;First_state_of_residence_code&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AZ&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OH&amp;nbsp;&amp;nbsp; WY&lt;/P&gt;&lt;P&gt;State_name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Arizona Ohio Wyoming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem with this approach is that QV creates a synthetic key&lt;/P&gt;&lt;P&gt;Syn #1&lt;/P&gt;&lt;P&gt;Current_state_of_residence_code&lt;/P&gt;&lt;P&gt;Previous_state_of_residence_code&lt;/P&gt;&lt;P&gt;First_state_of_residence_code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The synthetic key will &lt;SPAN style="text-decoration: underline;"&gt;NEVER&lt;/SPAN&gt; join to any row in Table A unless the person's current, previous and first states of reseidence just happened to be the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How do I join multiple fields in a single table to a common code table?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Help!!!&amp;nbsp; I am stuck on a high visibility project.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 14:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304276#M1187716</guid>
      <dc:creator />
      <dc:date>2011-08-26T14:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple joins to a code table</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304277#M1187717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's probably not the most elegant solution, but you could create 3 identical tables with different field names (corresponding to each state_of_residence). Using Inlines, the structure would be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;State:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code, State_name&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AZ, Arizona&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OH, Ohio&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WY, Wyoming&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; null, None&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User_ID, Current_state_of_residence_code, Previous_state_of_residence_code, First_state_of_residence_code&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 001, AZ, OH, WY&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 002, OH, null, OH&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StateC:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code as Current_state_of_residence_code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_name as Current_state_of_residence_name&lt;BR /&gt;Resident State;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StateP:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code as Previous_state_of_residence_code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_name as Previous_state_of_residence_name&lt;BR /&gt;Resident State;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;StateF:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_code as First_state_of_residence_code,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; State_name as First_state_of_residence_name&lt;BR /&gt;Resident State;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table State;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 19:37:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304277#M1187717</guid>
      <dc:creator />
      <dc:date>2011-08-26T19:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple joins to a code table</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304278#M1187719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If all you're doing is defining state names, I'd suggest turning your state code table into a map, and then applying that map to all three fields to load the names into the main table.&amp;nbsp; This sort of denormalization is not a problem for QlikView, and may in fact slightly improve performance.&amp;nbsp; Something along these lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[State Code Map]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;MAPPING LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;State_code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,State_name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM wherever&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[Table A]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;User_ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,Current_state_of_residence_code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,Previous_state_of_residence_code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,First_state_of_residence_code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,applymap('State Code Map',Current_state_of_residence_code,Current_state_of_residence_code) as Current_state_of_residence&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,applymap('State Code Map',Previous_state_of_residence_code,Previous_state_of_residence_code) as Previous_state_of_residence&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,applymap('State Code Map',First_state_of_residence_code,First_state_of_residence_code) as First_state_of_residence&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM wherever&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, if you want to be able to look up users by state regardless of when they were in that state (first, previous or current), you could instead (or in addition) do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[State Codes]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;State_code&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,State_name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM wherever&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;[Table A]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;CROSSTABLE (Residency,State_code)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;User_ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,Current_state_of_residence_code as Current&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,Previous_state_of_residence_code as Previous&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;,First_state_of_residence_code as First&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;FROM wherever&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each user now has three rows in Table A instead of 1.&amp;nbsp; Each row corresponds to values of an additional field, Residency.&amp;nbsp; It has values 'Current', 'Previous' and 'First'.&amp;nbsp; There is only one State_code field, and only one State Codes table.&amp;nbsp; If you select a State_name, you will get all users that currently reside there, previously resided there, or first resided there.&amp;nbsp; To narrow this list down further, you would need to make a selection in the Residency field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it all depends on what you're after.&amp;nbsp; You can combine the two approaches if you want even more flexibility, but having that many different fields with similar names will probably be confusing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 19:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304278#M1187719</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2011-08-26T19:52:03Z</dc:date>
    </item>
    <item>
      <title>Multiple joins to a code table</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304279#M1187721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like John's mapping table approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2011 20:25:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-joins-to-a-code-table/m-p/304279#M1187721</guid>
      <dc:creator />
      <dc:date>2011-08-26T20:25:37Z</dc:date>
    </item>
  </channel>
</rss>

