<?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 classifying and lookup tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784106#M277541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having to classify about 10000 lines of data.&amp;nbsp; &lt;/P&gt;&lt;P&gt;So ... I have a flowchart of what I need to do.&amp;nbsp; First I apply a lookup table, for one column.of data, next i apply another lookup table for another column in the same table, next I apply a third lookup table for another column in the same table.&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;I concatenate all three columns and apply another code based on the concatenation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still at the stage of asking that users are consistent with their coding and I expect this will eventually be less than 50 possibilites.&amp;nbsp; I am doing this in excel/Qlkview but it seems very labour intensive.&amp;nbsp; Is there an easier way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try and put together a demo.&lt;/P&gt;&lt;P&gt;Jo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2015 12:42:24 GMT</pubDate>
    <dc:creator>josephinetedesc</dc:creator>
    <dc:date>2015-03-11T12:42:24Z</dc:date>
    <item>
      <title>classifying and lookup tables</title>
      <link>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784106#M277541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having to classify about 10000 lines of data.&amp;nbsp; &lt;/P&gt;&lt;P&gt;So ... I have a flowchart of what I need to do.&amp;nbsp; First I apply a lookup table, for one column.of data, next i apply another lookup table for another column in the same table, next I apply a third lookup table for another column in the same table.&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;I concatenate all three columns and apply another code based on the concatenation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still at the stage of asking that users are consistent with their coding and I expect this will eventually be less than 50 possibilites.&amp;nbsp; I am doing this in excel/Qlkview but it seems very labour intensive.&amp;nbsp; Is there an easier way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try and put together a demo.&lt;/P&gt;&lt;P&gt;Jo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 12:42:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784106#M277541</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-03-11T12:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: classifying and lookup tables</title>
      <link>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784107#M277542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have the lookup tables then it sounds fairly straightforward to me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lookup1:&lt;/P&gt;&lt;P&gt;mapping load Key1, Value1 FROM LookupSource1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Lookup2:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;mapping load Key2, Value2 FROM LookupSource2;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Lookup3:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;mapping load Key3, Value3 FROM LookupSource3;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Data:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;LOAD ...some fields...,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;applymap('Lookup3', applymap('Lookup1', Field1) &amp;amp; '|' &amp;amp; applymap('Lookup2', Field2)) as FieldX,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;...some more fields...&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;FROM SourceTable;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:05:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784107#M277542</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-11T13:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: classifying and lookup tables</title>
      <link>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784108#M277543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert, so basically the same as if I were doing it in Excel -&amp;nbsp;&amp;nbsp; I can see though that there are advantages in using Qlik.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Jo&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:11:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/classifying-and-lookup-tables/m-p/784108#M277543</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-03-11T13:11:34Z</dc:date>
    </item>
  </channel>
</rss>

