<?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: Removing a Prefixed word from Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102858#M754939</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;think, it should be minus followed by the equal:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;​Count({&amp;lt;[Case Sub Team] -= {'BBDC*'}&amp;gt;}[Exception ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Sep 2018 15:16:24 GMT</pubDate>
    <dc:creator>prieper</dc:creator>
    <dc:date>2018-09-24T15:16:24Z</dc:date>
    <item>
      <title>Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102855#M754936</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 need to remove everything with "BBDC" from a query, as I need to pick up everything that don't start with &lt;SPAN style="font-size: 13.3333px;"&gt;"BBDC" in a pivot.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Currently tried this and few other however not working.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;=count({&amp;lt;[Exception ID],[Case Sub team]-={"BBDC*"}&amp;gt;}[Exception ID])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Example list below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;BBDC London&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;BBDC East&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;BBDC West&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;BBDC South&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;London&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;East&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;West&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;North&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;South&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Any help with be appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Mohi&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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/Removing-a-Prefixed-word-from-Expression/m-p/102855#M754936</guid>
      <dc:creator>mohiahmed</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102856#M754937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not sure what you want&lt;/P&gt;&lt;P&gt;if you want to exclude Sub Teams starting with BBDC I would use a calculated dimension&lt;/P&gt;&lt;P&gt;if ((left([case Sub Team],4)&amp;lt;&amp;gt; 'BBDC', [Case Sub Team])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to Report BBDC London to London I would use calcualted Dimension like&lt;/P&gt;&lt;P&gt;if ((left(case Sub Team,4) = 'BBDC', mid(case Sub Team,5, 10), case Sub Team)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your Expression would be&lt;/P&gt;&lt;P&gt;count(Exception ID)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2018 13:20:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102856#M754937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-09-24T13:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102857#M754938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I can understand, and based on your own measure that you tried, you want to count the Exception ID's of all the Case Sub Teams that don't start with BBDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should try this then:&lt;/P&gt;&lt;P&gt;Count({&amp;lt;[Case Sub Team]=-{'BBDC*'}&amp;gt;}[Exception ID])&lt;/P&gt;&lt;P&gt;&lt;IMG alt="BBDC_ex.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/214298_BBDC_ex.PNG" style="height: 114px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Left is a table with random generated Exception ID's, right is a table with my measure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2018 13:37:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102857#M754938</guid>
      <dc:creator>timpoismans</dc:creator>
      <dc:date>2018-09-24T13:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102858#M754939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;think, it should be minus followed by the equal:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;​Count({&amp;lt;[Case Sub Team] -= {'BBDC*'}&amp;gt;}[Exception ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2018 15:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102858#M754939</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2018-09-24T15:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102859#M754940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be this?&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: 13.3333px;"&gt;= count(IF( Not Wildmatch([Case Sub team], 'BBDC*')&amp;gt;0, [Exception ID])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2018 15:53:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102859#M754940</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-09-24T15:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102860#M754941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Purely depends on if he wants to make further selections in Case Sub Team or really wants to show all the Case Sub Teams that don't start with BBDC all the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=- doesn't take any further selections in Case Sub Team into account&lt;/P&gt;&lt;P&gt;-= does take further selections &lt;SPAN style="font-size: 13.3333px;"&gt;in Case Sub Team &lt;/SPAN&gt;into account&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 06:14:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102860#M754941</guid>
      <dc:creator>timpoismans</dc:creator>
      <dc:date>2018-09-25T06:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a Prefixed word from Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102861#M754942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try&lt;/P&gt;&lt;P&gt;count({&lt;STRONG&gt;1&lt;/STRONG&gt;&amp;lt;[Case Sub team]-={"BBDC*"}&amp;gt;}[Exception ID])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 10:20:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-a-Prefixed-word-from-Expression/m-p/102861#M754942</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2018-09-25T10:20:04Z</dc:date>
    </item>
  </channel>
</rss>

