<?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 Set analysis: ignore, but don't ignore in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536058#M38669</link>
    <description>&lt;P&gt;This may be simpler than I think... I have a straight table&amp;nbsp;that displays patient names and several measures about their blood pressure (latest date, number of readings, etc.). Users can filter the date range of when blood pressure readings were taken.&lt;/P&gt;&lt;P&gt;I need&amp;nbsp;to display the total count of blood pressure readings each patient has ever had. So it needs to ignore user selection on the date so that it counts all-time readings, BUT I want the table to honor the user selection so that it displays only patients who had (at least) a reading in the date range.&lt;/P&gt;&lt;P&gt;Using this measure causes the table to ignore the user selection altogether of course:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;Count({&amp;lt;BPdate= &amp;gt;} BProwID)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;As a result, the table is confusing because the user has applied a filter that is not being honored.&lt;/P&gt;&lt;P&gt;How can I get each patient's lifetime count while limiting the table to patients with the user-selected &lt;STRONG&gt;BPdate&lt;/STRONG&gt;?&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jan 2019 15:59:44 GMT</pubDate>
    <dc:creator>Lauri</dc:creator>
    <dc:date>2019-01-28T15:59:44Z</dc:date>
    <item>
      <title>Set analysis: ignore, but don't ignore</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536058#M38669</link>
      <description>&lt;P&gt;This may be simpler than I think... I have a straight table&amp;nbsp;that displays patient names and several measures about their blood pressure (latest date, number of readings, etc.). Users can filter the date range of when blood pressure readings were taken.&lt;/P&gt;&lt;P&gt;I need&amp;nbsp;to display the total count of blood pressure readings each patient has ever had. So it needs to ignore user selection on the date so that it counts all-time readings, BUT I want the table to honor the user selection so that it displays only patients who had (at least) a reading in the date range.&lt;/P&gt;&lt;P&gt;Using this measure causes the table to ignore the user selection altogether of course:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;Count({&amp;lt;BPdate= &amp;gt;} BProwID)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;As a result, the table is confusing because the user has applied a filter that is not being honored.&lt;/P&gt;&lt;P&gt;How can I get each patient's lifetime count while limiting the table to patients with the user-selected &lt;STRONG&gt;BPdate&lt;/STRONG&gt;?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 15:59:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536058#M38669</guid>
      <dc:creator>Lauri</dc:creator>
      <dc:date>2019-01-28T15:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis: ignore, but don't ignore</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536069#M38670</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;PRE&gt;Count({&amp;lt;BPdate&lt;FONT color="#FF0000"&gt;, Patients = p(Patients)&lt;/FONT&gt;&amp;gt;} BProwID)&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Jan 2019 16:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536069#M38670</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-01-28T16:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis: ignore, but don't ignore</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536076#M38671</link>
      <description>&lt;P&gt;That works perfectly! Thank you for your instant response, Sunny!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 16:11:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536076#M38671</guid>
      <dc:creator>Lauri</dc:creator>
      <dc:date>2019-01-28T16:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis: ignore, but don't ignore</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536079#M38672</link>
      <description>&lt;P&gt;Use GetSelectedCount on the date fields to identify if a selection has been made. if&amp;nbsp;no selection&amp;nbsp;has been made&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;Count( BProwID)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;else something like&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;Count({&amp;lt;BPdate={"&amp;lt;=$(=YOURMAXDATE)&amp;gt;=$(=YOURMINDATE)"} &amp;gt;} BProwID)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;if you can give specifics on the columns can help further&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 16:15:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-ignore-but-don-t-ignore/m-p/1536079#M38672</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-01-28T16:15:33Z</dc:date>
    </item>
  </channel>
</rss>

