<?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 row in Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708158#M255093</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, just to clarify, I am using the sample data as provided by QlikView, and my straight table includes the Customer as a dimension, and all the other possible fields as an expression. By including the above code, will it remove the values associated with that date? Just a bit confused by the Sum method stated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jul 2014 14:13:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-07-03T14:13:31Z</dc:date>
    <item>
      <title>Excluding row in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708155#M255090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a straight table and have a set of dates in addition to other information. What I am trying to do is remove a whole row whose date is on a Saturday or Sunday. My question is where I can achieve such a function. I have been trying different commands in the expressions tab of the properties of the table, but either the whole column of dates goes away or it does not change at all. I was wondering if anyone had any suggestions for achieving my desired result. My question does not like necessarily on how to get the Saturday and Sunday, but rather how to exclude the whole row whose WeekDay coincides with those ones.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 13:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708155#M255090</guid>
      <dc:creator />
      <dc:date>2014-07-03T13:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding row in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708156#M255091</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 below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;in your script&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; weekday(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;CalendarDate&lt;/SPAN&gt;) as WeekDay&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Then, you can use in your expression&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;sum({&amp;lt;WeekDay-={6,7}&amp;gt;} Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 13:54:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708156#M255091</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-07-03T13:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding row in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708157#M255092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;...or just use an expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(&lt;/P&gt;&lt;P&gt;If(Weekday(Max(CalendarDate)&amp;lt;5,Sales))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 14:01:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708157#M255092</guid>
      <dc:creator>juleshartley</dc:creator>
      <dc:date>2014-07-03T14:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding row in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708158#M255093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, just to clarify, I am using the sample data as provided by QlikView, and my straight table includes the Customer as a dimension, and all the other possible fields as an expression. By including the above code, will it remove the values associated with that date? Just a bit confused by the Sum method stated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 14:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708158#M255093</guid>
      <dc:creator />
      <dc:date>2014-07-03T14:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding row in Table</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708159#M255094</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;Just give a try, or share a sample app if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2014 07:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-row-in-Table/m-p/708159#M255094</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-07-04T07:53:48Z</dc:date>
    </item>
  </channel>
</rss>

