<?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 Use Script to Remove all Parts Ending With 'VR' in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121134#M604199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to remove all numbers in my load that end with 'VR' I want to remove the whole number, not just the VR suffix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried using "where not" (below) and I keep getting an error saying %MahleCram can't be found. But it does not work when I use its previous name XCLEVITEM either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you !!!&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/208675_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2018 12:02:08 GMT</pubDate>
    <dc:creator>oliveton</dc:creator>
    <dc:date>2018-07-24T12:02:08Z</dc:date>
    <item>
      <title>Use Script to Remove all Parts Ending With 'VR'</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121134#M604199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to remove all numbers in my load that end with 'VR' I want to remove the whole number, not just the VR suffix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried using "where not" (below) and I keep getting an error saying %MahleCram can't be found. But it does not work when I use its previous name XCLEVITEM either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you !!!&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/208675_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 12:02:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121134#M604199</guid>
      <dc:creator>oliveton</dc:creator>
      <dc:date>2018-07-24T12:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Use Script to Remove all Parts Ending With 'VR'</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121135#M604200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Natalie,&lt;/P&gt;&lt;P&gt;you can try this function on the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where right(%&lt;SPAN style="font-size: 13.3333px;"&gt;MahleCram&lt;/SPAN&gt;,2) &amp;lt;&amp;gt; 'VR'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in a resident load, in this where clause only XCLEVITEM is valid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 12:14:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121135#M604200</guid>
      <dc:creator>PabloTrevisan</dc:creator>
      <dc:date>2018-07-24T12:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Use Script to Remove all Parts Ending With 'VR'</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121136#M604201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; not WildMatch(Text(PurgeChar(PurgeChar(XCLEVITEM, ' '), '-')),'*VR')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 12:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121136#M604201</guid>
      <dc:creator>dapostolopoylos</dc:creator>
      <dc:date>2018-07-24T12:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Use Script to Remove all Parts Ending With 'VR'</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121137#M604202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pablo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this but all my parts that end with "VR" still appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there something I'm doing wrong ?&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/208678_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2018 14:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Script-to-Remove-all-Parts-Ending-With-VR/m-p/121137#M604202</guid>
      <dc:creator>oliveton</dc:creator>
      <dc:date>2018-07-24T14:05:03Z</dc:date>
    </item>
  </channel>
</rss>

