<?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 How to remove special character? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684304#M248001</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;I want to remove last two character from my field.&lt;/P&gt;&lt;P&gt;I know, I need to use PurgeChar() but the problem is, I don't know how to type this character.&lt;/P&gt;&lt;P&gt;Please find below image for clarification.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Remove.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/61483_Remove.png" /&gt;&lt;/P&gt;&lt;P&gt;Please help me regarding this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2014 05:17:07 GMT</pubDate>
    <dc:creator>soha1902</dc:creator>
    <dc:date>2014-07-01T05:17:07Z</dc:date>
    <item>
      <title>How to remove special character?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684304#M248001</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;I want to remove last two character from my field.&lt;/P&gt;&lt;P&gt;I know, I need to use PurgeChar() but the problem is, I don't know how to type this character.&lt;/P&gt;&lt;P&gt;Please find below image for clarification.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Remove.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/61483_Remove.png" /&gt;&lt;/P&gt;&lt;P&gt;Please help me regarding this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 05:17:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684304#M248001</guid>
      <dc:creator>soha1902</dc:creator>
      <dc:date>2014-07-01T05:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove special character?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684305#M248002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To exclude last two chararcters, try like:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;=Left&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('ABCDE',&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Len&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('ABCDE')-2) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;You can replace ABCDE by your field name.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 05:24:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684305#M248002</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-07-01T05:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove special character?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684306#M248003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try like below load script if in the fields it is last 2 words&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Mid(FieldName,1,len(FieldName)-2) as Newfield&lt;/P&gt;&lt;P&gt;From Location;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use purge char also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the small example&lt;/P&gt;&lt;P&gt;LOAD Site,Word, mid(Word,1,len(Word)-2) as NewWord;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Site,Word&lt;/P&gt;&lt;P&gt;a,23fd&lt;/P&gt;&lt;P&gt;b,45fdsf&lt;/P&gt;&lt;P&gt;c,3fsdf&lt;/P&gt;&lt;P&gt;d,56fdsf&lt;/P&gt;&lt;P&gt;e,566fsdf&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you get in field NewWord&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 148px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="148"&gt;23&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;3fs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;56fd&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;566fs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;45fd&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 05:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-special-character/m-p/684306#M248003</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-07-01T05:25:08Z</dc:date>
    </item>
  </channel>
</rss>

