<?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: Cannot count total distinct individuals when filtering by year and/or quarter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900260#M992869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Serena,&lt;/P&gt;&lt;P&gt;For this type of scenario you should not calculate in the script, you should calculate in the front end by using the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;COUNT(DISTINCT FIELD).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can try like this, count the first transaction/record then this issue will be solved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 Jul 2015 00:20:55 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-07-18T00:20:55Z</dc:date>
    <item>
      <title>Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900257#M992865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif; font-size: 13px;"&gt;I'm pulling data from two datasheets and want to count unique individuals by doing a temporarily resident load. How would I enable the Count(Distinct(&lt;EM&gt;[people]&lt;/EM&gt;)) to count unique individuals for the entire year, but then also have a quarter filter be able to count(distinct [people])? &lt;/SPAN&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 22:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900257#M992865</guid>
      <dc:creator />
      <dc:date>2015-07-17T22:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900258#M992867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want to do this in the script, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does your data look like, could you post some sample lines of data and your expected result?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In general, I would look into GROUP BY clauses with appropriate calendar fields and then use COUNT(DISTINCT FIELD) aggregation function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 22:38:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900258#M992867</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-07-17T22:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900259#M992868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi swuehl,&lt;/P&gt;&lt;P&gt;I am using a GROUP BY clause but then I can only filter by Year (you can see below that I removed Quarter from the Group By statement. If I filter by both Year and Quarter, some people get counted twice (once per quarter) and I do not get Total unique individuals. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a general sense of the script: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tracking:&lt;/P&gt;&lt;P&gt;Load ...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp; [F and L Name] as [Partner Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ... &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FROM [table1.xlsx]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Tracking) Load ...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [F &amp;amp; L&amp;nbsp; Name] as [Partner Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [table2.xlsx]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Tracking) Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Goal,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year,&lt;/P&gt;&lt;P&gt;// Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Count(DISTINCT [Partner Name]) as Reach&lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident Tracking&lt;/P&gt;&lt;P&gt;&amp;nbsp; Where Goal='Employees volunteer and/or donate' and (Year ='2015' or Year='2016')&lt;/P&gt;&lt;P&gt;&amp;nbsp; Group by Goal,Year;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //removed: Quarter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've included a bit of a customized script because this is a part of a much much longer and unruly body of script that I took over from a partially created Dashboard with many highly customized graphs. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 23:59:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900259#M992868</guid>
      <dc:creator />
      <dc:date>2015-07-17T23:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900260#M992869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Serena,&lt;/P&gt;&lt;P&gt;For this type of scenario you should not calculate in the script, you should calculate in the front end by using the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;COUNT(DISTINCT FIELD).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can try like this, count the first transaction/record then this issue will be solved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Jul 2015 00:20:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900260#M992869</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-07-18T00:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900261#M992870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, might be better doing this in the front end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to calculate this in the script, I think you would need the yearly and quarterly reaches separately:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Tracking:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Load ...&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp; [F and L Name] as [Partner Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; FROM [table1.xlsx]&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Concatenate (Tracking) Load ...&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [F &amp;amp; L&amp;nbsp; Name] as [Partner Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [table2.xlsx]&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Concatenate (Tracking) Load&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Goal,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Year,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;// Quarter,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Count(DISTINCT [Partner Name]) as YearlyReach&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Resident Tracking&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Where Goal='Employees volunteer and/or donate' and (Year ='2015' or Year='2016')&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Group by Goal,Year;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Concatenate (Tracking) Load&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Goal,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Year,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Quarter,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Count(DISTINCT [Partner Name]) as QuarterlyReach&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Resident Tracking&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Where Goal='Employees volunteer and/or donate' and (Year ='2015' or Year='2016')&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp; Group by Goal,Year, Quarter;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Jul 2015 08:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900261#M992870</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-07-18T08:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900262#M992871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan, &lt;/P&gt;&lt;P&gt;How do I count first transaction/record (especially with two different data sources)? Say the two activities (data sources) are recording individuals running and walking. Each individual can do one or both of these activities multiple times per quarter and within a year. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought about COUNT(DISTINCT [FIELD]) in the front end except that I have to count it on the back end because the number of unique individuals also rolls up into a separate high-level metric that's counting individuals from these two data sheets along with a number of others (e.g. total number of individuals exercising, training and taking classes). The difficulty is that some of the data pulls in unique individuals while others, like the two sheets above, pull in their activity (so one individual can appear multiple times). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 18:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900262#M992871</guid>
      <dc:creator />
      <dc:date>2015-07-20T18:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900263#M992872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attach some sample data then it would be easier to understand and provide the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 00:36:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900263#M992872</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-07-21T00:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900264#M992873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reasons why &lt;EM&gt;you think&lt;/EM&gt; you have to do it in the script are in fact exactly the reasons why it is much better &lt;EM&gt;to do&lt;/EM&gt; it on the front end.&amp;nbsp; No matter how many data sheets or how you slice the calendar, the simple count(distinct Name)&amp;nbsp; will give you the correct result.&amp;nbsp; Just give it a try and see for yourself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 01:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900264#M992873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-21T01:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900265#M992874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.6999998092651px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/serenamau"&gt;serenamau&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please attach some sample data. It will help the folks for better understanding and give the answer quickly.&lt;/P&gt;&lt;P&gt;Thank you. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 01:40:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900265#M992874</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-07-21T01:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900266#M992875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand that COUNT(DISTINCT [FIELD]) would be preferable. However, these two datasheets (call then A and B) roll up to two different metrics. First is at the program level (unique individuals from just the two datasheets) and the second high level goal is counted via a front end equation using a SUM({&amp;lt;Goal ={"Supported people"}&amp;gt;} Progress). Each of those "unique individuals" contribute to the "Supported people" goal, along with individuals listed in a half dozen other data sources. In order to capture an accurate value for "Supported people", I would either need to list out the 8 other program names in the SUM portion of the equation then + COUNT(DISTINCT [field]) for the datasheets A and B, &lt;EM&gt;or&lt;/EM&gt; COUNT(DISTINCT [field]) in the script for datasheets A and B. The former seems very clunky, especially because there are multiple charts that are tied to this "Supported people" goal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I took over this very highly customized set of Dashboards, with a body of script that is not well designed. What I mean by that is that the previous individual concatenated most of the data sheets into a single concatenated table. I do not have the bandwidth to completely redo the entire body of script and all the separate Dashboards. &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Each data source contributes to one or more Program level goal and an Aggregated company goal.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@jagan I don't see the attached data. can you resend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 16:41:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900266#M992875</guid>
      <dc:creator />
      <dc:date>2015-07-21T16:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot count total distinct individuals when filtering by year and/or quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900267#M992877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Jagan &lt;EM&gt;asked you to provide&lt;/EM&gt; some sample data and the requested results. &lt;/P&gt;&lt;P&gt;I agree this would probably help us to understand and help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 17:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cannot-count-total-distinct-individuals-when-filtering-by-year/m-p/900267#M992877</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-07-21T17:08:34Z</dc:date>
    </item>
  </channel>
</rss>

