<?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 do I eliminate data with a certain string of characters? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835643#M658088</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is what I am trying to do, but neither of those worked... &lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2015 17:11:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-04-27T17:11:07Z</dc:date>
    <item>
      <title>How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835637#M658082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a certain amount of information associated to OrderID's - which are all numeric. However, we have test orders in the system (a lot of them) that all start with 'F'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to try and eliminate these dummy orders and their associated information - but I'm not sure how to write that into the script. in SQL, I use the like function with a wildcard - but it looks like the wildmatch function in Qlikview doesn't duplicate this exactly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DUMMY DATA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL ORDERID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F653519&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1089136&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:22:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835637#M658082</guid>
      <dc:creator />
      <dc:date>2015-04-27T16:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835638#M658083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use a where condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;P&gt;Isnum(ORDERID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will only load numeric values of the ORDERID field&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:27:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835638#M658083</guid>
      <dc:creator />
      <dc:date>2015-04-27T16:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835639#M658084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or if you specifically need to check for the 'F', you can use index&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Index(ORDERID,'F')=0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835639#M658084</guid>
      <dc:creator />
      <dc:date>2015-04-27T16:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835640#M658085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to remove those rows of data where OrderID has 'F' in it?? If yes then may be use it like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD yourFields&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From XYZ&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where not KeepChar(OrderID, 'F') = 'F';&lt;/STRONG&gt; (or &lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;Where not KeepChar(OrderID, 'F') &amp;lt;&amp;gt; 'F';&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:31:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835640#M658085</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-27T16:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835641#M658086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That didn't work, none of the Test OrderID's were eliminated... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:31:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835641#M658086</guid>
      <dc:creator />
      <dc:date>2015-04-27T16:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835642#M658087</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(DUMMYDATA,'F*'),NULL(),DUMMYDATA )AS NEWDUMMYDATA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 16:39:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835642#M658087</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-04-27T16:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835643#M658088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is what I am trying to do, but neither of those worked... &lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 17:11:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835643#M658088</guid>
      <dc:creator />
      <dc:date>2015-04-27T17:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835644#M658089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;LOAD yourFields&lt;/STRONG&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="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;From XYZ&lt;/STRONG&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="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Where IsNull(KeepChar(OrderID, 'F');&lt;/STRONG&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;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;or&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;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;LOAD yourFields&lt;/STRONG&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="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;From XYZ&lt;/STRONG&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="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Where Len(Trim(KeepChar(OrderID, 'F')) = 0;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 17:12:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835644#M658089</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-27T17:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835645#M658090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do the only have and F associated with them ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did the isnum(orderid), did not work ?&amp;nbsp; try with&lt;/P&gt;&lt;P&gt;where orderid * 1 &amp;gt;= 1, this should help identify the order that are numbers only &lt;/P&gt;&lt;P&gt;where left(UPPER(orderid),1) &amp;lt;&amp;gt; 'F' gets rid of everything that starts with a 'F'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 17:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835645#M658090</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-04-27T17:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835646#M658091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;what do you get with a&lt;/P&gt;&lt;P&gt;left(trim([&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;DUMMY DATA]&lt;/STRONG&gt;&lt;/SPAN&gt;,1))&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some F? if yes use that as a filter in the where (QlikView)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;if your data come from a sql db you can still use sql function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 17:27:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835646#M658091</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-04-27T17:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I eliminate data with a certain string of characters?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835647#M658092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I re-tried this after we fixed some seemingly unrelated issues and this did the trick, thank you! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2015 20:17:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-eliminate-data-with-a-certain-string-of-characters/m-p/835647#M658092</guid>
      <dc:creator />
      <dc:date>2015-04-28T20:17:36Z</dc:date>
    </item>
  </channel>
</rss>

