<?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: Script error in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-error/m-p/127572#M759163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oliver, &lt;/P&gt;&lt;P&gt;Thanks this works ..&lt;/P&gt;&lt;P&gt;Actually i want to discard the whole content if there is Defined or in progress in it. &lt;/P&gt;&lt;P&gt;For which the above logic is not working ...&lt;/P&gt;&lt;P&gt;How do i achieve this &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2018 09:38:22 GMT</pubDate>
    <dc:creator>smilingjohn</dc:creator>
    <dc:date>2018-08-28T09:38:22Z</dc:date>
    <item>
      <title>Script error</title>
      <link>https://community.qlik.com/t5/QlikView/Script-error/m-p/127570#M759161</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;In The script i am trying to add the below expression but this is giving an error during reload process. load &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Release,&lt;/P&gt;&lt;P&gt;if(not match(Status,'Defined','In Progress'),Release='Blank',Release) as RNUmber&lt;/P&gt;&lt;P&gt;Resident Test&lt;/P&gt;&lt;P&gt;Group by [Release],[Status];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i correct this &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;Thanks 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/Script-error/m-p/127570#M759161</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Script error</title>
      <link>https://community.qlik.com/t5/QlikView/Script-error/m-p/127571#M759162</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;&lt;/P&gt;&lt;P&gt;maybe this :&lt;/P&gt;&lt;P&gt;if(not match(Status,'Defined','In Progress'),'Blank',Release) as RNUmber&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remove : release=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 09:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-error/m-p/127571#M759162</guid>
      <dc:creator>ogautier62</dc:creator>
      <dc:date>2018-08-28T09:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script error</title>
      <link>https://community.qlik.com/t5/QlikView/Script-error/m-p/127572#M759163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oliver, &lt;/P&gt;&lt;P&gt;Thanks this works ..&lt;/P&gt;&lt;P&gt;Actually i want to discard the whole content if there is Defined or in progress in it. &lt;/P&gt;&lt;P&gt;For which the above logic is not working ...&lt;/P&gt;&lt;P&gt;How do i achieve this &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 09:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-error/m-p/127572#M759163</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2018-08-28T09:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Script error</title>
      <link>https://community.qlik.com/t5/QlikView/Script-error/m-p/127573#M759164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to have null :&lt;/P&gt;&lt;P&gt;if(not match(Status,'Defined','In Progress'),,Release) as RNUmber&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to skeep row :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add where match(Status,'Defined','In Progress') =0 in load&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 09:43:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-error/m-p/127573#M759164</guid>
      <dc:creator>ogautier62</dc:creator>
      <dc:date>2018-08-28T09:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Script error</title>
      <link>https://community.qlik.com/t5/QlikView/Script-error/m-p/127574#M759165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using above answer not getting error &lt;/P&gt;&lt;P&gt;[SalesPersonSales201806]:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Short_ID, Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, AUG&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, SEP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, DEC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, SEP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, SEP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6, OCT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7, JAN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8, AUG&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;load Short_ID,&lt;/P&gt;&lt;P&gt;if (not match(Month,'AUG','SEP'),'Blank','YES') as tert&lt;/P&gt;&lt;P&gt;Resident [SalesPersonSales201806];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;getting below result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 138px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="67"&gt;Short_ID&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="40"&gt;Month&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="31"&gt;tert&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;1&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;AUG&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;YES&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;2&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;SEP&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;YES&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;3&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;DEC&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Blank&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;4&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;SEP&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;YES&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;5&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;SEP&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;YES&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;6&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;OCT&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Blank&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;7&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;JAN&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Blank&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;8&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;AUG&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;YES&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 09:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-error/m-p/127574#M759165</guid>
      <dc:creator>gavinigovind452</dc:creator>
      <dc:date>2018-08-28T09:52:20Z</dc:date>
    </item>
  </channel>
</rss>

