<?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: clean dimension values or categorise them in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137141#M900945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;post sample file to try&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2016 08:54:52 GMT</pubDate>
    <dc:creator>arulsettu</dc:creator>
    <dc:date>2016-07-12T08:54:52Z</dc:date>
    <item>
      <title>clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137133#M900937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I want to group field(dimension) values into a different dimension, ie My current field values are are not clean, so i am trying for the best way to categorize it or atleast trim the values like below example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Value Example-&lt;/P&gt;&lt;P&gt;from-&lt;/P&gt;&lt;P&gt;CASH DCN2 JUL02....&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;CASH DCN3 JUL05...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;to-&lt;/P&gt;&lt;P&gt;CASH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me how to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&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/clean-dimension-values-or-categorise-them/m-p/1137133#M900937</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137134#M900938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;assuming you want only the first word in field &lt;/P&gt;&lt;P&gt;you can use &lt;/P&gt;&lt;P&gt;subfield(YOUR_FIELD ,' ',1)&amp;nbsp; which will give you the first word in each value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 07:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137134#M900938</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2016-07-12T07:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137135#M900939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using left() can achieve this:.&lt;/P&gt;&lt;TABLE cellspacing="0" class="TableStyle-tableGrid" style="margin-bottom: 15px; color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; margin-right: auto;"&gt;&lt;TBODY style="border-top-width: 2px; border-top-color: #0f0f0f;"&gt;&lt;TR class="Body-Body1" style="border-bottom-width: 1px; border-bottom-color: #d5d5d5;"&gt;&lt;TD class="BodyC--" data-mc-conditions="Primary.NotToTranslate" style="padding: 7px; border: 1px solid #d5d5d5;"&gt;&lt;SPAN class="Code" style="font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-size: 12px;"&gt;Left('abcdef', 3)&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="BodyA--" style="padding: 7px; border: 1px solid #d5d5d5;"&gt;Returns 'abc'&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;FYR: &lt;/SPAN&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Left.htm" style="font-size: 10pt; line-height: 1.5em;" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Left.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Left.htm&lt;/A&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 07:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137135#M900939</guid>
      <dc:creator />
      <dc:date>2016-07-12T07:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137136#M900940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the replies!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My values are like below-&lt;/P&gt;&lt;P&gt;CASH BNKM&amp;nbsp;&amp;nbsp;&amp;nbsp; NOV15K&amp;amp;H&lt;/P&gt;&lt;P&gt;CASH DCN2&amp;nbsp;&amp;nbsp;&amp;nbsp; AUG083140&lt;/P&gt;&lt;P&gt;BOOTS PH&lt;/P&gt;&lt;P&gt;TRADERS Ltd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first and second values are actually same. So I want to make them as 'CASH'&lt;/P&gt;&lt;P&gt;The 3rd and 4th values are completely different, so i &lt;STRONG&gt;don't&lt;/STRONG&gt; want to trim them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:05:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137136#M900940</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2016-07-12T08:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137137#M900941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Liron's suggestion will work in your case, you can have a try!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:12:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137137#M900941</guid>
      <dc:creator />
      <dc:date>2016-07-12T08:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137138#M900942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the expected output?&lt;/P&gt;&lt;P&gt;Like below ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASH&lt;/P&gt;&lt;P&gt;CASH&lt;/P&gt;&lt;P&gt;BOOTS&lt;/P&gt;&lt;P&gt;TRADERS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not can you please also post that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:13:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137138#M900942</guid>
      <dc:creator>varshavig12</dc:creator>
      <dc:date>2016-07-12T08:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137139#M900943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if yes try this in list boc expression&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(WildMatch(fieldname,'*CASH*'),'CASH',fieldname)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:24:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137139#M900943</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2016-07-12T08:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137140#M900944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the inputs. They give me ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Infact i have many values in the are duplicates,unique, special characters etc., so I think with a single calculated field i cannot achieve it completely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TransactionType&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;CASH BNKM&amp;nbsp;&amp;nbsp;&amp;nbsp; NOV15K&amp;amp;H&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;CASH DCN2&amp;nbsp;&amp;nbsp;&amp;nbsp; AUG083140&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;BOOTS PH&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TRADERS Ltd&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;******************************&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRADERS Ltd*************&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;1.If you see below, few values are like complete star line(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;*******&lt;/SPAN&gt;) and few (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TRADERS Ltd****&lt;/SPAN&gt;) with special characters, that i want to clean.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;2.Also want to merge few values like(CASH*), replace star lines with a value in different field in the table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Is it possible to achieve this using lookup table like Mapping?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137140#M900944</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2016-07-12T08:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137141#M900945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;post sample file to try&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:54:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137141#M900945</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2016-07-12T08:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137142#M900946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/130964_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n if not can you please post the expected output ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:59:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137142#M900946</guid>
      <dc:creator>varshavig12</dc:creator>
      <dc:date>2016-07-12T08:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137143#M900947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varsha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I am expecting similar result. Could you show the full expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 09:55:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137143#M900947</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2016-07-12T09:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137144#M900948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(WildMatch(PurgeChar(fieldname,'0123456789*'),'*CASH*'),'CASH',PurgeChar(fieldname,'0123456789*'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 10:01:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137144#M900948</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2016-07-12T10:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137145#M900949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(WildMatch(&lt;STRONG&gt;TransactionType&lt;/STRONG&gt;,'*CASH*'),'CASH',trim(replace(&lt;STRONG&gt;TransactionType&lt;/STRONG&gt;,'*','')))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 10:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137145#M900949</guid>
      <dc:creator>varshavig12</dc:creator>
      <dc:date>2016-07-12T10:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: clean dimension values or categorise them</title>
      <link>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137146#M900950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;I will come back after working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 10:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/clean-dimension-values-or-categorise-them/m-p/1137146#M900950</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2016-07-12T10:22:55Z</dc:date>
    </item>
  </channel>
</rss>

