<?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 Sum hours for a week in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341799#M572889</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I set up a bar chart to only sum my 'Timereported' field for a week at a time? Then change when the new week begins.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jul 2012 15:29:49 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-09T15:29:49Z</dc:date>
    <item>
      <title>Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341799#M572889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I set up a bar chart to only sum my 'Timereported' field for a week at a time? Then change when the new week begins.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2012 15:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341799#M572889</guid>
      <dc:creator />
      <dc:date>2012-07-09T15:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341800#M572890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if I've understood correctly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) if you want to group by week, over all weeks, create a week field in your data model. I assume you already have a date field DATE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DATE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;VALUE,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;week(DATE) as WEEK&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // or weekname(DATE) as WEEK&lt;/P&gt;&lt;P&gt;&lt;EM&gt;from TABLE;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then just use sum(VALUE) as expression in a bar chart with dimension WEEK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) If you only want to see the current week:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;DATE = {"&amp;gt;=$(=weekstart(today()))&amp;lt;=$(=today())"}&amp;gt;} VALUE)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as expression and no dimension or DATE as dimension (one total bar or a bar per day).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2012 16:05:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341800#M572890</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-09T16:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341801#M572891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My current dimension are my groups ('UserGroup') because I'm looking at the amount of hours recorded for each group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I currently have two dimensions in the bar chart...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 12pt;"&gt;&lt;SPAN style=": ; color: #0000ff; font-size: 12pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sum&lt;/P&gt;&lt;SPAN style="font-size: 12pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 12pt;"&gt;TimeReportedActual&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;) &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;distinct&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;TechID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) * 40 &lt;/SPAN&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;I'm using the first one to sum up the time reported and then using the second one to calculate (based on the number of people in each group) how many hours should ACTUALLY be recoreded each week (based on each person doing a 40 hour work week) so that way both bars for each group should be equal every week if each group is putting in all their time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did go and create the week variable with 'week(DATE) as week'. So I need a way for the first equation to show only the current weeks hours that were recorded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps describe what I'm looking to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2012 17:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341801#M572891</guid>
      <dc:creator />
      <dc:date>2012-07-09T17:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341802#M572892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, I want this to always stay with the current week and only for the total hours/reported hours like I said above, regardless of what the users picks, ie the 3rd quarter or the month of June. It would still display information about the current week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use that equation above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;DATE = {"&amp;gt;=$(=weekstart(today()))&amp;lt;=$(=today())"}&amp;gt;} VALUE)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it shows everything from Date onward as a field (its shown in red).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2012 18:04:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341802#M572892</guid>
      <dc:creator />
      <dc:date>2012-07-09T18:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341803#M572893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry I misspoke. I want it to only show the previous week.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2012 18:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341803#M572893</guid>
      <dc:creator />
      <dc:date>2012-07-09T18:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341804#M572894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you explain further? You always have the right answers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I'm just using that equation wrong somehow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 12:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341804#M572894</guid>
      <dc:creator />
      <dc:date>2012-07-10T12:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341805#M572895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might be a problem with date formatting. Could you upload a small sample file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In general, your bar chart expressions should look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;Date = {"&amp;gt;=$(=weekstart(today(),-1))&amp;lt;=$(=weekend(today(),-1))"}&amp;gt;} TimeReportedActual)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;resp.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=count({&amp;lt;Date = {"&amp;gt;=$(=weekstart(today(),-1))&amp;lt;=$(=weekend(today(),-1))"}&amp;gt;} distinct TechID)*40&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where Date is the name of your Date field, with Date format being your standard date format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 12:35:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341805#M572895</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-10T12:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341806#M572896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I attached the qvw. The Dashboard is what has the bar graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it could, I want a bar graph to show last weeks hours and then another to show the current weeks hours.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 13:03:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341806#M572896</guid>
      <dc:creator />
      <dc:date>2012-07-10T13:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341807#M572897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do get a bar chart like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="18057" class="jive-image-thumbnail jive-image" onclick="" alt="BarChart.JPG" src="https://community.qlik.com/legacyfs/online/18057_BarChart.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's wrong with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This chart should show the values for last week (Haven't checked in detail).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to get a chart that is insensitive to selections in calendar fields, you might need to clear your calendar fields in the set expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=count({&amp;lt;Date = {"&amp;gt;=$(=weekstart(today(),-1))&amp;lt;=$(=weekend(today(),-1))"}, &lt;STRONG&gt;Month=, Day=, Year=, Week=, Quarter=&lt;/STRONG&gt;&amp;gt;} distinct TechID)*40&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 13:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341807#M572897</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-10T13:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341808#M572898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get that as well. I guess the numbers there are right. Is there a way to make it show last weeks numbers regardless of the user selections?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 13:19:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341808#M572898</guid>
      <dc:creator />
      <dc:date>2012-07-10T13:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341809#M572899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try a set identifier 1 in both set expressions, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=count({ &lt;STRONG&gt;1&lt;/STRONG&gt; &amp;lt;Date = {"&amp;gt;=$(=weekstart(today(),-1))&amp;lt;=$(=weekend(today(),-1))"} &amp;gt;} distinct TechID)*40&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 13:28:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341809#M572899</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-10T13:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341810#M572900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That works to keep the selection regardless of user selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help. You're very helpful as always!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2012 13:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341810#M572900</guid>
      <dc:creator />
      <dc:date>2012-07-10T13:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341811#M572901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Having a slight problem with the bar graph now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached the .qvw again with the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The bar chart should only be displaying 'target hours' for 'user group' that have distinct 'TechID's' and multiply by 40 hours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why does my bar chart have 'PS' labeled as 40 when if you go over to the Details tab, there are no 'PS' value in the UserGroup field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 17:19:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341811#M572901</guid>
      <dc:creator />
      <dc:date>2012-07-11T17:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341812#M572902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some of your Dates in table TimeLog2 are in fact timestamps and don't link to your calendar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;daystart(TimeLogDate) as Date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to create a date without a time part (maybe add a date() around for formatting).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 18:48:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341812#M572902</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-11T18:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341813#M572903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This would be in the script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 19:38:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341813#M572903</guid>
      <dc:creator />
      <dc:date>2012-07-11T19:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341814#M572904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, do this in the load script (as a hint, &lt;EM&gt;as &lt;/EM&gt;can only be used in the script). Just replace your TimeLog2 Load line &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TimeLogDate as Date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;daystart(TimeLogDate) as Date,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;date(daystart(TimeLogDate)) as Date,&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 20:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341814#M572904</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-11T20:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341815#M572905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That did not work. The 'PS' field is still showing up in the bar graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an aside, you wouldn't happen to be able to help explain section access/ have a sample qvw that uses it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 20:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341815#M572905</guid>
      <dc:creator />
      <dc:date>2012-07-11T20:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341816#M572906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, the PS field will probably still show up, but you see the details for the July 5th now, don't you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then please attach an updated file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is quite a nice document explaining section access in the docs section:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/docs/DOC-1853"&gt;http://community.qlik.com/docs/DOC-1853&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 20:37:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341816#M572906</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-11T20:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341817#M572907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aha! It seems to keep showing up because theres a value I had hidden on the details tab for July 5th that is null. How can I prevent it from being in the bar graph?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 20:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341817#M572907</guid>
      <dc:creator />
      <dc:date>2012-07-11T20:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sum hours for a week</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341818#M572908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what your criterium to hide the record is, a NULL in TimeReportedActual for that date? You can consider only records that show a value in that field using something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=count({&amp;lt;&lt;STRONG&gt;TimeReportedActual = {"*"}&lt;/STRONG&gt;, Date = {"&amp;gt;=$(=weekstart(today(),-1))&amp;lt;=$(=weekend(today(),-1))"},&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Month=, Day=, Year=, Week=, Quarter=&amp;gt;} distinct(TechID))*40&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 21:18:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-hours-for-a-week/m-p/341818#M572908</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-11T21:18:51Z</dc:date>
    </item>
  </channel>
</rss>

