<?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: Last full week Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34261#M782980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I'm really amateur, could you fill in the gaps with my dates&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Mar 2018 15:31:12 GMT</pubDate>
    <dc:creator>robmarr789</dc:creator>
    <dc:date>2018-03-15T15:31:12Z</dc:date>
    <item>
      <title>Last full week Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34259#M782976</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;I am brand new to Qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to write an expression that will do the following;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM all sales within the last full week. This needs to roll forward in real time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example as of today 'last week' would include 05/03/18 - 11/03/18. The following week it will filter between 12/03/18 - 18/03/18&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fields within my source data are 'Sales' and 'DocDate'&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/Last-full-week-Qlikview/m-p/34259#M782976</guid>
      <dc:creator>robmarr789</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Last full week Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34260#M782979</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:&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Week = {'$(=Week(Today())-1)'}&amp;gt;}Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Week = Week(Date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34260#M782979</guid>
      <dc:creator>fvelascog72</dc:creator>
      <dc:date>2018-03-15T15:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Last full week Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34261#M782980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I'm really amateur, could you fill in the gaps with my dates&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 15:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34261#M782980</guid>
      <dc:creator>robmarr789</dc:creator>
      <dc:date>2018-03-15T15:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Last full week Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34262#M782982</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 have the Date, then try&lt;/P&gt;&lt;P&gt;=Sum( {&amp;lt; Date = {"&amp;gt;=$(=WeekStart(today()-(1+num(WeekDay(today())))))&amp;lt;=$(=WeekEnd(today()-(1+num(WeekDay(today())))))"} &amp;gt;} Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 16:02:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34262#M782982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-15T16:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Last full week Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34263#M782983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;DocDate={"&amp;gt;=$(=WeekStart(Today(), -1))&amp;lt;=$(=WeekEnd(Today(),-1))"}&amp;gt;} Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 16:22:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34263#M782983</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-03-15T16:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Last full week Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34264#M782985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;week(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DocDate)&lt;SPAN&gt;=Weekstart(Today()),Sum(Sales))&lt;/SPAN&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;&lt;SPAN&gt;and &lt;/SPAN&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;&lt;SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;week(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DocDate)&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=Week(Today())-1,Sum(Sales))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2018 17:07:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-full-week-Qlikview/m-p/34264#M782985</guid>
      <dc:creator>zebhashmi</dc:creator>
      <dc:date>2018-03-15T17:07:19Z</dc:date>
    </item>
  </channel>
</rss>

