<?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: How to remove specific characters from Left for all the values of a field in QlikView in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89334#M755067</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pranav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PurgeChar(text, remove_chars)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example Result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PurgeChar ( 'a1b2c3','123' ) Returns 'abc'&lt;/P&gt;&lt;P&gt;PurgeChar ( 'a1b2c3','312' ) Returns 'abc'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In your Case:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;PurgeChar ( '&lt;/SPAN&gt;G0080202594','G0') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;It will result you --&amp;gt; 822594&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt; -- It will remove all occurrence of G and 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope, it will help you.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Oct 2018 16:11:40 GMT</pubDate>
    <dc:creator>amit_gupta</dc:creator>
    <dc:date>2018-10-09T16:11:40Z</dc:date>
    <item>
      <title>How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89331#M755062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field which I require for mapping purpose. But it is adding G00/G0/G prefix to all the order numbers that I want to match.&lt;/P&gt;&lt;P&gt;For Example : G0080202594 or G0285144563 or G1085346991&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, what I want is to trim off the initial G or any 0 afterwards which will give me something like this 80202594/285144563 /1085346991.&lt;/P&gt;&lt;P&gt;As I can't tell for sure how many 0s will be there after G letter so I can't just remove a specific number of letters from beginning. I would like to know how can I remove the G and any 0 that comes right after(if any).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated.Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pranav&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/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89331#M755062</guid>
      <dc:creator>pranaview</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89332#M755064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below should cover your scenarios mentioned in your post. Just remove G and convert to a number&lt;/P&gt;&lt;P&gt;Num(Replace('G0080202594','G',''))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 15:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89332#M755064</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2018-10-09T15:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89333#M755066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or Maybe like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(mid('G0080202594',2,len('G0080202594')))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 16:07:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89333#M755066</guid>
      <dc:creator>jayanttibhe</dc:creator>
      <dc:date>2018-10-09T16:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89334#M755067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pranav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PurgeChar(text, remove_chars)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example Result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PurgeChar ( 'a1b2c3','123' ) Returns 'abc'&lt;/P&gt;&lt;P&gt;PurgeChar ( 'a1b2c3','312' ) Returns 'abc'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In your Case:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;PurgeChar ( '&lt;/SPAN&gt;G0080202594','G0') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;It will result you --&amp;gt; 822594&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt; -- It will remove all occurrence of G and 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope, it will help you.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 16:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89334#M755067</guid>
      <dc:creator>amit_gupta</dc:creator>
      <dc:date>2018-10-09T16:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89335#M755068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Purging is not the solution. It will remove the Valid "0" from the Fieldvalue. i.e. 80202594 -- &amp;gt;&amp;nbsp;&amp;nbsp; 822594. this is not what he want. He just want to remove the Leading "0" and the characther "G"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 16:18:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89335#M755068</guid>
      <dc:creator>jayanttibhe</dc:creator>
      <dc:date>2018-10-09T16:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89336#M755069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think in that case, We can directly use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #ff9900;"&gt;Num(PurgeChar ('G0080202594','G') )&lt;/STRONG&gt; instead of &lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;PurgeChar ( '&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;G0080202594','G0')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;It will remove G and Num will removes all initial 0's, as Zero''s before any non zero numbers automatically will be removed, when we use Num().&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I think, it will work &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&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, 09 Oct 2018 17:07:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89336#M755069</guid>
      <dc:creator>amit_gupta</dc:creator>
      <dc:date>2018-10-09T17:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89337#M755070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One solution could be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Replace(LTrim(Replace(Mid([Order Number], 2, Len([Order Number])-1), '0', ' ')), ' ', '0')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 17:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89337#M755070</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-09T17:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89338#M755071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be another way can be :&lt;/P&gt;&lt;P&gt;Write this as an expr or in load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= Mid(TextStr, FindOneOf(TextStr, '123456789'), Len(TextStr)) AS NewStr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2018 19:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89338#M755071</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-10-09T19:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89339#M755072</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;Thanks for the solution. Works for my current requirement but if in future I get order numbers without G then this expression will trim off the first digit as well. So i think i will have to put a condition to check if first character is number or a letter and then do the needful. But this solution should do it for now. Again thank you so much for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pranav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 13:57:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89339#M755072</guid>
      <dc:creator>pranaview</dc:creator>
      <dc:date>2018-10-11T13:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89340#M755073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everyone for the suggestions. I appreciate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 14:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89340#M755073</guid>
      <dc:creator>pranaview</dc:creator>
      <dc:date>2018-10-11T14:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89341#M755074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try my expression without the letter G?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2018 14:18:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89341#M755074</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-10-11T14:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89342#M755075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I tried the expression without G and it doesn't work in this scenario as it will remove the first character regardless of what it is. The order format for my field starts with G or sometimes another letter but for now i'm only concerned about the order numbers starting with the G. But if in future the requirement differs then i'll have to make adjustments to this expression. Like maybe putting a condition to check if first character of the order number is a digit or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 08:33:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89342#M755075</guid>
      <dc:creator>pranaview</dc:creator>
      <dc:date>2018-10-15T08:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89343#M755076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show some eg' values where this did not work? Just wanted to check.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2018 13:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89343#M755076</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-10-15T13:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89344#M755077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If suppose the Order number is 830&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;8510406 then after going through this expression, you will get 30&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;8510406. as output.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;So it removes the first character irrespective of whether it is a G or a digit.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 13:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89344#M755077</guid>
      <dc:creator>pranaview</dc:creator>
      <dc:date>2018-10-16T13:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove specific characters from Left for all the values of a field in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89345#M755078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange this is what i see when i use my expr using the eg you gave. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/216037_Capture.PNG" style="height: 584px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2018 14:08:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-specific-characters-from-Left-for-all-the-values/m-p/89345#M755078</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-10-16T14:08:00Z</dc:date>
    </item>
  </channel>
</rss>

