<?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: Data Cleaning and Transformation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053545#M928431</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks, Sunny, i will try it out and revert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Mar 2016 08:05:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-03-23T08:05:29Z</dc:date>
    <item>
      <title>Data Cleaning and Transformation</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053543#M928429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created the following mapping table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screen Shot 2016-03-23 at 09.29.49.png" class="jive-image image-1" src="/legacyfs/online/119083_Screen Shot 2016-03-23 at 09.29.49.png" style="height: 265px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;I am cleaning the 'MANUFACTURER' field and replacing it with a cleaned field 'MANUFACTURERNEW'.&amp;nbsp; I will use the ApplyMap function to do the cleaning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the above table, i also need to create new fields namely 'MCAZAppType' and 'ManufacturerStatus' which are arrived at by inspecting the 'Manufacturer' name.&amp;nbsp; Can this be done at the ApplyMap stage when cleaning the 'Manufacturer' field and if so how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&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/Data-Cleaning-and-Transformation/m-p/1053543#M928429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data Cleaning and Transformation</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053544#M928430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can, there are couple of options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Create three different Mapping tables one each for the MANUFACTURERNEW, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MCAZAppType, and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ManufacturerStatus or&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) create one mapping table with concatenating the three columns into one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MAPPINGTABLE:&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 &lt;SPAN style="font-size: 13.3333px;"&gt;MANUFACTURE,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MANUFACTURERNEW &amp;amp; '|' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MCAZAppType&lt;SPAN style="font-size: 13.3333px;"&gt; &amp;amp; '|' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ManufacturerStatus&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then when you are mapping it use the subfield function to extract each one of them, for instance for &lt;SPAN style="font-size: 13.3333px;"&gt;MANUFACTURERNEW you can do this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(ApplyMap('MAPPINGTABLE', MANUFACTURER), '|', 1) as &lt;SPAN style="font-size: 13.3333px;"&gt;MANUFACTURERNEW,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) You always have the option to do a left join as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 07:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053544#M928430</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-23T07:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data Cleaning and Transformation</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053545#M928431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks, Sunny, i will try it out and revert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 08:05:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053545#M928431</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-23T08:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data Cleaning and Transformation</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053546#M928432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you apply the SubField to all fields or just the derived fields?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 09:18:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053546#M928432</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-23T09:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data Cleaning and Transformation</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053547#M928433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just the three new fields that you are adding. Everything else stays the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&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; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SubField(ApplyMap('MAPPINGTABLE', MANUFACTURER), '|', 1) as &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;MANUFACTURERNEW,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SubField(ApplyMap('MAPPINGTABLE', MANUFACTURER), '|', 2) as &lt;STRONG style="color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;MCAZAppType&lt;/STRONG&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SubField(ApplyMap('MAPPINGTABLE', MANUFACTURER), '|', 3) as &lt;STRONG style=": ; color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;ManufacturerStatus&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style=": ; color: #3d3d3d; font-size: 13px; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;Resident XYZ...&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 09:21:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053547#M928433</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-23T09:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Data Cleaning and Transformation</title>
      <link>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053548#M928434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks, i have applied it to my QV application and it works for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 10:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-Cleaning-and-Transformation/m-p/1053548#M928434</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-23T10:05:38Z</dc:date>
    </item>
  </channel>
</rss>

