<?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: Count cases from past week in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551607#M744306</link>
    <description>&lt;P&gt;Hi. That´s it. In the attached picture I have taken a screenshot of three out of five boxes. Each of the blue boxes count ongoing cases, cases that are in queue, cases that are resting and a box that count the total. In the yellow empty box though, I would like to count cases that have been submitted during the last week. The text on the box translates (from swedish) to "New cases week X" where I also would like to show the week number of this present week instead of the X.&lt;/P&gt;&lt;P&gt;I have a trigger on my sheet characteristics that says to only display cases that are ongoing, in queue or resting - but in this particular yellow box I would&amp;nbsp; also like to&amp;nbsp;&lt;SPAN&gt;show denied cases (status denied) since I want to show all new cases that have been submitted this particular week regardless of its status.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also - how do I put the specific week number in my time stamp? Now I use the code&amp;nbsp;= Timestamp(Now()) but it would be really great if I could complete my present time stamp with the text "week" and then the week numer...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-03-04_10-28-58.png" style="width: 771px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7158i0253A3840A40210D/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-03-04_10-28-58.png" alt="2019-03-04_10-28-58.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Mar 2019 09:41:23 GMT</pubDate>
    <dc:creator>ElsaJulia</dc:creator>
    <dc:date>2019-03-04T09:41:23Z</dc:date>
    <item>
      <title>Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551439#M744303</link>
      <description>&lt;P&gt;Hi. I am new to QlikView and need som help with a script or an expression.&lt;/P&gt;&lt;P&gt;I have created an Excel spreadsheet that contains rows with information about cases I am currently working on. In column A I have a unique ID-number, then a column with start date , a column with a status that can be active, resting, denied,&amp;nbsp;queue or finished and then some columns with other information.&lt;/P&gt;&lt;P&gt;In my QlikView app I have created a tab that I have named "present situation" and there I have chosen to display cases that have the status active, resting or queue. I have also created boxes that displays a number which shows how many cases that have the status active, resting or queue. However - now I want to create a box that shows how many new cases that have been received during the last week. These new cases can have the status active, resting or queue but they can also have the status denied. My question now is how to create this box? What is the expression (and where do I put it) to calculate all new cases that have been received during the last seven days (from present day) - or even better if I some how could choose a week number and get a correct number. Also - in my tab I have (as I wrote) put that I only want to display cases that have the status active, resting och queue - and that goes for all different charts and boxes displayed on that tab except this box that I want to create since this particular box can also show cases that are also denied.&lt;/P&gt;&lt;P&gt;I really hope that I have described my problem correct and that anyone can help me solve it.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551439#M744303</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551519#M744304</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Could you please share some sample data and expected out put.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 04:25:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551519#M744304</guid>
      <dc:creator>ramachandra_gee</dc:creator>
      <dc:date>2019-03-04T04:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551597#M744305</link>
      <description>&lt;P&gt;ElsaJulia,&lt;/P&gt;&lt;P&gt;Create 2 variables as it is good practice when you deal with dates, you can create variables in setting-&amp;gt;variable overview,&lt;/P&gt;&lt;P&gt;//vWeekStart=date(DayStart(today(),-7)) -&amp;gt; gives you weekStart from today (Today - 7)&lt;/P&gt;&lt;P&gt;//vToday=date(today()) -&amp;gt; gives today's date&lt;/P&gt;&lt;P&gt;Then just use below exp&lt;/P&gt;&lt;P&gt;=count({&amp;lt;&lt;SPAN&gt;startDate&amp;nbsp;&lt;/SPAN&gt;={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},status={&lt;SPAN&gt;&amp;nbsp;'active', 'resting', 'queue'&lt;/SPAN&gt;}&amp;gt;} ID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 09:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551597#M744305</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T09:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551607#M744306</link>
      <description>&lt;P&gt;Hi. That´s it. In the attached picture I have taken a screenshot of three out of five boxes. Each of the blue boxes count ongoing cases, cases that are in queue, cases that are resting and a box that count the total. In the yellow empty box though, I would like to count cases that have been submitted during the last week. The text on the box translates (from swedish) to "New cases week X" where I also would like to show the week number of this present week instead of the X.&lt;/P&gt;&lt;P&gt;I have a trigger on my sheet characteristics that says to only display cases that are ongoing, in queue or resting - but in this particular yellow box I would&amp;nbsp; also like to&amp;nbsp;&lt;SPAN&gt;show denied cases (status denied) since I want to show all new cases that have been submitted this particular week regardless of its status.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also - how do I put the specific week number in my time stamp? Now I use the code&amp;nbsp;= Timestamp(Now()) but it would be really great if I could complete my present time stamp with the text "week" and then the week numer...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-03-04_10-28-58.png" style="width: 771px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7158i0253A3840A40210D/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-03-04_10-28-58.png" alt="2019-03-04_10-28-58.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 09:41:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551607#M744306</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T09:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551612#M744307</link>
      <description>&lt;P&gt;You got my first answer?&lt;/P&gt;&lt;P&gt;You can get weekNumber by using &lt;EM&gt;&lt;STRONG&gt;Week(today())&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 09:50:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551612#M744307</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T09:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551637#M744308</link>
      <description>&lt;P&gt;Thanx for your answer. I didn't get the code to work though (but I also have zero experience from coding).&lt;/P&gt;&lt;P&gt;I created the two variables and then in the text objects text box (tab text) I wrote:&amp;nbsp;=count({&amp;lt;startDate ={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},Status={ 'Pågående', 'Vilande', 'Kö', 'Nekat'}&amp;gt;} [K-nummer])&lt;/P&gt;&lt;P&gt;But everything from startDate to Status is underlined with red (which I guess is not ok). Also ID (which I replaces wit [K-nummer] which is the headline of my ID-column is all in red (but that maybe should be that way?).&lt;/P&gt;&lt;DIV class="tlid-input input"&gt;&lt;DIV class="source-wrap"&gt;&lt;DIV class="input-full-height-wrapper tlid-input-full-height-wrapper"&gt;&lt;DIV class="source-input"&gt;&lt;DIV class="source-footer-wrap source-or-target-footer"&gt;&lt;DIV class="character-count tlid-character-count"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 10:26:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551637#M744308</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T10:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551638#M744309</link>
      <description>&lt;P&gt;Hi again. Where do I put that code? In the text object for the yellow box I have in the text box written&amp;nbsp;= Timestamp(Now()). Where do I write Week(today())? Sorry for my ignorance...&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 10:28:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551638#M744309</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T10:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551643#M744310</link>
      <description>&lt;P&gt;Instead of startDate, put your dateField.&lt;BR /&gt;=count({&amp;lt;&lt;STRONG&gt;yourDateField&lt;/STRONG&gt;={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},Status={ 'Pågående', 'Vilande', 'Kö', 'Nekat'}&amp;gt;} [K-nummer])&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 10:33:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551643#M744310</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T10:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551646#M744311</link>
      <description>&lt;P&gt;Where you want to show time stamp?&amp;nbsp; You just use exp lile,&lt;/P&gt;&lt;P&gt;='Week - ' &amp;amp; week(today())&amp;nbsp; // gives you output Week - 10&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 10:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551646#M744311</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T10:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551775#M744312</link>
      <description>&lt;P&gt;Hi again. I don´t get the code to work :(. Can you spot where the errors are&lt;/P&gt;&lt;P&gt;=count({&amp;lt;'Datum för inkommen begäran' ={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},Status={ 'Pågående', 'Vilande', 'Kö', 'Nekat'}&amp;gt;} [K-nummer])&lt;/P&gt;&lt;P&gt;'Datum för inkommen begäran' is the column name for my start date column and 'K-nummer' is the column name for my ID-numbers.&lt;/P&gt;&lt;P&gt;Thanx!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551775#M744312</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T13:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551781#M744313</link>
      <description>&lt;P&gt;Still getting syntax error (red lines) or output is not coming?&lt;/P&gt;&lt;P&gt;Do not use ('), otherwise syntax is fine,&lt;/P&gt;&lt;P&gt;=count({&amp;lt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;'&lt;/FONT&gt;&lt;/STRONG&gt;Datum för inkommen begäran&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;'&lt;/FONT&gt; &lt;/STRONG&gt;={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},Status={ 'Pågående', 'Vilande', 'Kö', 'Nekat'}&amp;gt;} [K-nummer])&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:41:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551781#M744313</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T13:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551783#M744314</link>
      <description>&lt;P&gt;Have you added values in variables?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="errr.png" style="width: 621px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7183i86C9E93D57440627/image-size/large?v=v2&amp;amp;px=999" role="button" title="errr.png" alt="errr.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:38:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551783#M744314</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T13:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551792#M744315</link>
      <description>&lt;P&gt;Hi. I added the variables as you did:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-03-04_14-43-07.png" style="width: 438px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7184i4E58DB1454B58A31/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-03-04_14-43-07.png" alt="2019-03-04_14-43-07.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I get the result wrong (and my code is underlined with red:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-03-04_14-42-00.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7185i428F12D6E3FD126C/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-03-04_14-42-00.png" alt="2019-03-04_14-42-00.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:44:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551792#M744315</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T13:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551795#M744316</link>
      <description>&lt;P&gt;Do not use ('), otherwise syntax is fine,&lt;/P&gt;&lt;P&gt;=count({&amp;lt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;'&lt;/FONT&gt;&lt;/STRONG&gt;Datum för inkommen begäran&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;'&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},Status={ 'Pågående', 'Vilande', 'Kö', 'Nekat'}&amp;gt;} [K-nummer])&lt;/P&gt;&lt;P&gt;Paste below expression,&lt;/P&gt;&lt;P&gt;=count({&amp;lt;Datum för inkommen begäran&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;={"&amp;gt;=$(=vWeekStart)&amp;lt;=$(=vToday)"},Status={ 'Pågående', 'Vilande', 'Kö', 'Nekat'}&amp;gt;} [K-nummer])&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551795#M744316</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T13:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551804#M744317</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;It still doesn´t work. Now I get an error message (in the text box)...&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 13:54:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551804#M744317</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T13:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551814#M744318</link>
      <description>&lt;P&gt;What as error?&lt;/P&gt;&lt;P&gt;It is working fine in my app&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="www.png" style="width: 653px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7190i14C342089F9D11C7/image-size/large?v=v2&amp;amp;px=999" role="button" title="www.png" alt="www.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 14:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551814#M744318</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-04T14:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551822#M744319</link>
      <description>&lt;P&gt;Maybe there is something wrong with the swedish letters?&lt;/P&gt;&lt;P&gt;If I write my code as you suggested the whole line is underlined with red:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 985px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7191i00C7703FADE9877D/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but if I put my column name that include swedish letters in [] or "", the red underline disappeares at least, but the result I get is wrong (0 where it should be 2).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 979px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7192i055A6D7FA2BC0615/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 14:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1551822#M744319</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-04T14:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1552102#M744320</link>
      <description>&lt;P&gt;Ya, when you have spaces in between fields, you need to put them in [].&lt;BR /&gt;I don't know why it is not working in your case, it is working fine in my case.&lt;BR /&gt;Can you check whether you have data in past 7 days with those statuses?&lt;/P&gt;&lt;P&gt;Also check, any of filters (if any) are not selected.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 05:30:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1552102#M744320</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-05T05:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1554314#M744321</link>
      <description>&lt;P&gt;Hi again. It seems as if my latest reply magically disappeared :(. Thanks for your reply. Your solution worked! It was me who had made a misstake in my original file.&lt;/P&gt;&lt;P&gt;I however now have a new problem. I have several textboxes that show the number of for instance ongoing cases and now also the number of cases received during the last seven days (which you helped me with). I also have a chart that shows my original data. That is columns with some more information about a case (from my original files). If I for example cklick on the number in the textbox representing ongoing cases, the chart only shows information about these cases. I however don´t get this to work for my textbox representing the number of cases received during the last seven days.&lt;/P&gt;&lt;P&gt;I guess I have to add another field in the activity tab (in the text object properties) but I don´t know how. The other boxes work, but there I only have one activity linked to the box. Its only dependent on one column (status) in my original files. How can I solve this problem?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Mar 2019 15:15:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1554314#M744321</guid>
      <dc:creator>ElsaJulia</dc:creator>
      <dc:date>2019-03-08T15:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Count cases from past week</title>
      <link>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1555251#M744322</link>
      <description>&lt;P&gt;Hi Elsa,&lt;/P&gt;&lt;P&gt;Kudos for first requirement !!!&lt;/P&gt;&lt;P&gt;Just go to Properties of text box-&amp;gt;Action -&amp;gt; Add-&amp;gt;select in field-&amp;gt; In &lt;STRONG&gt;Fields&lt;/STRONG&gt;, put your date field(hope you have date field in table also, in &lt;STRONG&gt;search string&lt;/STRONG&gt; put this &lt;EM&gt;&lt;STRONG&gt;='&amp;gt;='&amp;amp;Date(WeekStart(today())) &amp;amp; '&amp;lt;=' &amp;amp;date(today())&lt;/STRONG&gt;&lt;/EM&gt; - &amp;gt; Apply&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="ssss.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7769i7370FC27B853BE29/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ssss.png" alt="ssss.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you will click on text box it will apply filter of date range on table data.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 10:05:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Count-cases-from-past-week/m-p/1555251#M744322</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-03-12T10:05:28Z</dc:date>
    </item>
  </channel>
</rss>

