<?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: Excluding field values in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234999#M856002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is all about combining AND, OR, NOT properly. The above logic implementation would give you an idea. For specific and exact solution you have to provide with all the conditions at a time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Feb 2017 12:25:45 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2017-02-08T12:25:45Z</dc:date>
    <item>
      <title>Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234993#M855993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have a table which contains Status,Operational Date,Cancellation Date.In Status column some sites are operational and some are disconnected,also some sites which have cancellation date in current month are also shown Disconnected.Now I am excluding Disconnected sites in script itself by giving where Status&amp;lt;&amp;gt;'Disconnected',but,I need values from sites whose status is disconnected but cancellation date is of current month.Please help me in solving this issue.Thank you in advance&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/Excluding-field-values-in-script/m-p/1234993#M855993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234994#M855995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you post the script on wall and meantime few rows to handle it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 10:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234994#M855995</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-08T10:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234995#M855996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil&lt;/P&gt;&lt;P&gt;posted sample data,here I used where Status&amp;lt;&amp;gt;'Disconnected' in script,but,I need values where status is disconnected and cancellation date is of particular month form where value is taken,i.e., row-4 and 5 values have to be read and row-6 can be omitted&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 11:09:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234995#M855996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-08T11:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234996#M855998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Where not (status='Disconnected' and month(today())&amp;lt;&amp;gt;Month([Cancellation Date]));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;For &lt;STRONG&gt;Jan&lt;/STRONG&gt; comparison try like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Where not (status='Disconnected' and month(&lt;STRONG&gt;addmonths&lt;/STRONG&gt;(today(),&lt;STRONG&gt;-1&lt;/STRONG&gt;))&amp;lt;&amp;gt;Month([Cancellation Date]));&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 11:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234996#M855998</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-02-08T11:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234997#M855999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based on your requirement,Exrtracted only row-4 and 5.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/152439_1.png" style="height: 63px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;LOAD Region, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Country, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; City, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SiteID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountNumber, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; status, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Operational Date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt; [Cancellation Date], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Model, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Desc, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Local Currency], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where status ='Disconnected' and Month([Cancellation Date])= month(addmonths(today(),-1));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 12:11:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234997#M855999</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2017-02-08T12:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234998#M856001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tresesco&lt;/P&gt;&lt;P&gt;I also have some other filters like where country&amp;lt;&amp;gt;'xyz' then how can I write this where statement,also if I need sites from Nov-2016&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 12:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234998#M856001</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-08T12:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234999#M856002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is all about combining AND, OR, NOT properly. The above logic implementation would give you an idea. For specific and exact solution you have to provide with all the conditions at a time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 12:25:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1234999#M856002</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-02-08T12:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235000#M856004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My conditions are: where Country&amp;lt;&amp;gt;'' and Country&amp;lt;&amp;gt;'xyz' and Status&amp;lt;&amp;gt;'Disconnected' and len(trim([Account Number])) &amp;gt; 0);.I gave like this,now I have to get sites which are disconnected but cancellation date is of particular month(November) ,but, completely disconnected sites shouldn't show as mentioned in above where clause&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 12:41:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235000#M856004</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-08T12:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235001#M856005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Surendra&lt;/P&gt;&lt;P&gt;Please check all my conditions mentioned in this post(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;where Country&amp;lt;&amp;gt;'' and Country&amp;lt;&amp;gt;'xyz' and Status&amp;lt;&amp;gt;'Disconnected' and len(trim([Account Number])) &amp;gt; 0)&lt;/SPAN&gt;) also what should I have to do if data should be for November-2016&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 12:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235001#M856005</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-08T12:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235002#M856007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where&amp;nbsp; Country&amp;lt;&amp;gt;'' and Country&amp;lt;&amp;gt;'xyz' and len(trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Account Number]&lt;/SPAN&gt;) &amp;gt; 0) and&lt;/P&gt;&lt;P&gt;&amp;nbsp; not (status='Disconnected' and month(addmonths(today(),-1))&amp;lt;&amp;gt;Month([Cancellation Date]));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 12:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235002#M856007</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-02-08T12:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235003#M856008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tresesco&lt;/P&gt;&lt;P&gt;Now that I understood how to write Expression,but,it is not giving values of sites which are disconnected in November and December when I am deriving values form that fields.Please help.how can I modify above expression so that I can get values for Nov and Dec fields.I think i need to use ADDYEARS function but not sure how to do&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 14:40:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235003#M856008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-08T14:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235004#M856010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it something like&lt;/P&gt;&lt;P&gt;Where&amp;nbsp; Country&amp;lt;&amp;gt;'' and Country&amp;lt;&amp;gt;'xyz' and len(trim([Account Number]) &amp;gt; 0) and&lt;/P&gt;&lt;P&gt;&amp;nbsp; not (Status='Disconnected' and (month(AddMonths(today(),-1))&amp;lt;&amp;gt;Month([Cancellation Date])) and (Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([Cancellation Date])))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2017 14:55:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235004#M856010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-08T14:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235005#M856011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Vani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where not isnull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Country&lt;/SPAN&gt;) and&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Country&amp;lt;&amp;gt;'xyz'&lt;/SPAN&gt; and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;len(trim([Account Number]) &amp;gt; 0)&lt;/SPAN&gt;&amp;nbsp; and not (match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Status,'Disconnected') and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(month(AddMonths(today(),-1))&amp;lt;&amp;gt;Month([Cancellation Date]))&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;and (Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([Cancellation Date]))))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2017 16:27:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235005#M856011</guid>
      <dc:creator />
      <dc:date>2017-02-17T16:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding field values in script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235006#M856013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried this expression and it is working fine.Thank you all for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where&amp;nbsp; Country&amp;lt;&amp;gt;'' and Country&amp;lt;&amp;gt;'xyz' and len(trim([Account Number]) &amp;gt; 0) and &lt;/P&gt;&lt;P&gt;(Status='Operational' or (Status='Disconnected'&amp;nbsp; and&lt;/P&gt;&lt;P&gt;([Cancellation Date]&amp;gt;=MonthStart(Today(),-3) and [Cancellation Date]&amp;lt;=MonthEnd(Today(),0) and &lt;/P&gt;&lt;P&gt;([Cancellation Date]&amp;gt;=YearStart(Today(),-1) and [Cancellation Date]&amp;lt;=YearEnd(Today(),0))))) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2017 07:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-field-values-in-script/m-p/1235006#M856013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-21T07:10:58Z</dc:date>
    </item>
  </channel>
</rss>

