<?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 Excluding with where in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338507#M124863</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or try this code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;&amp;lt;&amp;gt;if(findoneof(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;,'4*'),&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;) and sale&amp;lt;&amp;gt;if(findoneof(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;,'5*'),&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Apr 2012 09:57:30 GMT</pubDate>
    <dc:creator>SunilChauhan</dc:creator>
    <dc:date>2012-04-10T09:57:30Z</dc:date>
    <item>
      <title>Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338501#M124857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to exclude whith "where" all the materials which &lt;STRONG&gt;started&lt;/STRONG&gt; by 4and 5. I have no idea how to do this. Here is my actually coding but it doesn't work :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[..\..\SOURCES\SAP\ERP\MARA_MATERIAL_MASTER.qvd](qvd)WHERE Material_MATNR &amp;lt;&amp;gt; '4*' and Material_MATNR &amp;lt;&amp;gt; '5*';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 06:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338501#M124857</guid>
      <dc:creator />
      <dc:date>2012-04-05T06:12:41Z</dc:date>
    </item>
    <item>
      <title>Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338502#M124858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;/P&gt;&lt;P&gt;If you want to remove all rows when Material_MATNR started with 4 or 5 the use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&amp;nbsp; Not Wildmatch(Left(Material_MATNR,1),'4','5') ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&amp;nbsp; Wildmatch(Left(Material_MATNR,1),'4','5') =0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 06:46:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338502#M124858</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2012-04-05T06:46:36Z</dc:date>
    </item>
    <item>
      <title>Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338503#M124859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Change this part &lt;/P&gt;&lt;P&gt;WHERE Material_MATNR &amp;lt;&amp;gt; '4*' and Material_MATNR &amp;lt;&amp;gt; '5*';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE Not WildMatch(Material_MATNR, '4*' ,'5*');&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;WHERE WildMatch(Material_MATNR, '4*' ,'5*')&amp;gt;0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2012 08:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338503#M124859</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-04-05T08:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338504#M124860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vijay Singh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry that I reply so late, but I was not in the company. Your answer is absolutely wright and your soultion worked. I hope that you get your 10 points. Thanks a lot!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mit freundlichen Grüßen/ Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Walter &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2012 09:31:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338504#M124860</guid>
      <dc:creator />
      <dc:date>2012-04-10T09:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338505#M124861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Celambarasan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry that I reply so late, but I was not in the company. Your answer is absolutely wright and your soultion worked. I hope that you get your 10 points. Thanks a lot!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mit freundlichen Grüßen/ Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Walter &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2012 09:32:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338505#M124861</guid>
      <dc:creator />
      <dc:date>2012-04-10T09:32:14Z</dc:date>
    </item>
    <item>
      <title>Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338506#M124862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try below code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;&amp;lt;&amp;gt;if(findoneof(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;,'45'),&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2012 09:55:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338506#M124862</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2012-04-10T09:55:48Z</dc:date>
    </item>
    <item>
      <title>Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338507#M124863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or try this code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;&amp;lt;&amp;gt;if(findoneof(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;,'4*'),&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;) and sale&amp;lt;&amp;gt;if(findoneof(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;,'5*'),&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;Material_MATNR &lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2012 09:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338507#M124863</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2012-04-10T09:57:30Z</dc:date>
    </item>
    <item>
      <title>Excluding with where</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338508#M124864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunil Chauhan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot for your helpful answer and I would like to give you 5 points. The problem at your solution is, that all materials with a 4 or 5 will be excluded. For example: A material 100020&lt;STRONG&gt;5&lt;/STRONG&gt;12 will not be shown because of the 5 in it. Please watch the other solutions, they are correct. But really thank you very much for your proffessional reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Walter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2012 11:52:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-with-where/m-p/338508#M124864</guid>
      <dc:creator />
      <dc:date>2012-04-10T11:52:24Z</dc:date>
    </item>
  </channel>
</rss>

