<?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 Help with mapping data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936853#M963248</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two fields in a table that i would like to map but dont have a clue how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is numbers like this FPWO0006-15+0001 which i would like to map to FPWO so that when i select FPWO then all of them will show and also in the same table numbers like this PCWO0006-15+0001 which i would like to map aswell to PCWO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way i can do this in the load script ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help will be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Oct 2015 11:18:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-10-08T11:18:40Z</dc:date>
    <item>
      <title>Help with mapping data</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936853#M963248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two fields in a table that i would like to map but dont have a clue how.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is numbers like this FPWO0006-15+0001 which i would like to map to FPWO so that when i select FPWO then all of them will show and also in the same table numbers like this PCWO0006-15+0001 which i would like to map aswell to PCWO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way i can do this in the load script ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help will be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 11:18:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936853#M963248</guid>
      <dc:creator />
      <dc:date>2015-10-08T11:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help with mapping data</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936854#M963249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your map is always the first 4 chars&lt;/P&gt;&lt;P&gt;you can add a field in the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left(yourfield, 4) as newfield&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then add a listbox for newfield&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 11:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936854#M963249</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-10-08T11:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help with mapping data</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936855#M963250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;if you are looking to remove the numbers and operators in the field and retain only text then you can try the below&lt;/P&gt;&lt;P&gt;Purgechar('Fieldname','0123456789+-*/') &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 11:27:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936855#M963250</guid>
      <dc:creator>malini_qlikview</dc:creator>
      <dc:date>2015-10-08T11:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with mapping data</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936856#M963251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please share the sample set of data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 11:27:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936856#M963251</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-10-08T11:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with mapping data</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936857#M963252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use &lt;STRONG&gt;Purgechar&lt;/STRONG&gt; or &lt;STRONG&gt;Left&lt;/STRONG&gt; funtions to extract the piece from field value &amp;amp; then use ApplyMap like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ApplyMap('Map_table', Left(FieldName,4) , Null() ) AS NewField&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&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; or&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;ApplyMap('Map_table', Purgechar(FieldName,'0123456789+-/') , Null() ) AS NewField&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;If you always have first 4 char is your required value then go with &lt;STRONG&gt;Left&lt;/STRONG&gt; function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Oct 2015 13:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-mapping-data/m-p/936857#M963252</guid>
      <dc:creator />
      <dc:date>2015-10-08T13:03:02Z</dc:date>
    </item>
  </channel>
</rss>

