<?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 values from script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276975#M854896</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 file with status,end date and amount columns,here status is Operational and disconnected.My requirement is I need amount from rows where status is operational and also where status is disconnected but end date is of nov, dec and jan and I don't need other columns where status is disconnected and end date is of oct or other.&lt;/P&gt;&lt;P&gt;I used expressions like :&lt;/P&gt;&lt;P&gt;and (Status='Operational'&lt;/P&gt;&lt;P&gt;and not (Status='Disconnected' and (Month(AddMonths(today(),-3))&amp;lt;&amp;gt;Month([End Date]) and (Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([End Date])))));&lt;/P&gt;&lt;P&gt;Can anyone please help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Excluding values from script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276975#M854896</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 file with status,end date and amount columns,here status is Operational and disconnected.My requirement is I need amount from rows where status is operational and also where status is disconnected but end date is of nov, dec and jan and I don't need other columns where status is disconnected and end date is of oct or other.&lt;/P&gt;&lt;P&gt;I used expressions like :&lt;/P&gt;&lt;P&gt;and (Status='Operational'&lt;/P&gt;&lt;P&gt;and not (Status='Disconnected' and (Month(AddMonths(today(),-3))&amp;lt;&amp;gt;Month([End Date]) and (Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([End Date])))));&lt;/P&gt;&lt;P&gt;Can anyone please help me?&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-values-from-script/m-p/1276975#M854896</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding values from script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276976#M854897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;try this &lt;/P&gt;&lt;P&gt;=if (Status='Operational' or Status='Disconnected'&amp;nbsp; and &lt;/P&gt;&lt;P&gt;(Month(AddMonths(today(),-3))&amp;lt;&amp;gt;Month([End Date]) and (Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([End Date])))));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 10:05:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276976#M854897</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-02-15T10:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding values from script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276977#M854898</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and Match(Status, 'Operational', 'Disconnected') and Match(Month(EndDate), 'Jan', 'Nov','Dec') and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([End Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 10:18:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276977#M854898</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2017-02-15T10:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding values from script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276978#M854899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chanty&lt;/P&gt;&lt;P&gt;When I am using this expression it was throwing an error like if&amp;nbsp; will take 2,3 parameters and I modified it like &lt;/P&gt;&lt;P&gt;(Status='Operational' or (Status='Disconnected'&amp;nbsp; and&lt;/P&gt;&lt;P&gt;(Month(AddMonths(today(),-3))&amp;lt;&amp;gt;Month([Cancellation Date]) and (Year(AddYears(Today(),-1))&amp;lt;&amp;gt;Year([Cancellation Date])))) but it is not returning values.Please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 11:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276978#M854899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-15T11:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding values from script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276979#M854900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have modified the expression as (Status='Operational' or (Status='Disconnected'&amp;nbsp; and&lt;/P&gt;&lt;P&gt;(Month(AddMonths(today(),-3))=Month([Cancellation Date]) and (Year(AddYears(Today(),-1))=Year([Cancellation Date]))))) and Status&amp;lt;&amp;gt;'TBD' and it is working for November,but I need Dec and Jan data also, do I need to add another addmonths along with this or is there any way to use monthstart or monthsstart to give 3 months data at once.Anyone please reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 11:35:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276979#M854900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-15T11:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding values from script</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276980#M854901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;FROM Table &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Wildmatch(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Status&lt;/SPAN&gt;,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'*Operational*', '*Disconnected'*)&amp;nbsp; AND &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;(End_Date&amp;gt;=MonthStart(Today(),-3) and End_Date&amp;lt;=MonthEnd(End_Date,0));&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 11:35:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-values-from-script/m-p/1276980#M854901</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2017-02-15T11:35:26Z</dc:date>
    </item>
  </channel>
</rss>

