<?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: Exception expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611584#M681168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just a simple list of the usernames which meet that criteria. The usernames which don't would be excluded from the results&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2014 16:51:18 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-04-07T16:51:18Z</dc:date>
    <item>
      <title>Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611581#M681163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using the attached sample data, how can I find out which usernames have WorkingDayDisconnects as 'true' for &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;ALL&lt;/STRONG&gt;&lt;/SPAN&gt; sessions and also for which the DisconnectionReason reason is only ever blank or 'CLOSED_BY_CLIENT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. if WorkingDayDisconnect is 'true' even once for a username, it needs to be excluded from the results. Similarly, if the DisconnectionReason is anything other than blank or 'CLOSED_BY_CLIENT' for all session, then it too must be excluded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:38:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611581#M681163</guid>
      <dc:creator />
      <dc:date>2014-04-07T16:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611582#M681164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you want the results to display? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below expression can be added to a straight table chart with the dimension of [UserName] to detect who has 1 or more trues:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;=IF(COUNT({1&amp;lt;[WorkingDayDisconnect] = {'true'}&amp;gt;} [WorkingDayDisconnect] &amp;gt; 0,'At least one true','All false')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want the UserName's with "trues" to show up at all you can use the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(COUNT({1&amp;lt;[WorkingDayDisconnect] = {'true'}&amp;gt;} [WorkingDayDisconnect] = 0,'All false')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression would be similar for the disconnection reason.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:49:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611582#M681164</guid>
      <dc:creator />
      <dc:date>2014-04-07T16:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611583#M681167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using exists() function in where conditions, maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD DISTINCT &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; UserName as ExcludeUsername&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[sample disconnects.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;where WorkingDayDisconnect = 'true' or (len(trim(DisconnectionReason)) and DisconnectionReason &amp;lt;&amp;gt; 'CLOSED_BY_CLIENT');&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD UserName, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SessionStartedDate, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WorkingDayDisconnect, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DisconnectionReason&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[sample disconnects.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;where not exists(ExcludeUsername, UserName);&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:49:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611583#M681167</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-04-07T16:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611584#M681168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just a simple list of the usernames which meet that criteria. The usernames which don't would be excluded from the results&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:51:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611584#M681168</guid>
      <dc:creator />
      <dc:date>2014-04-07T16:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611585#M681169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This doesn't remove the duplicates though. I need unique values displayed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:56:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611585#M681169</guid>
      <dc:creator />
      <dc:date>2014-04-07T16:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611586#M681170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What other dimensions do you have in your table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 16:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611586#M681170</guid>
      <dc:creator />
      <dc:date>2014-04-07T16:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Exception expression</title>
      <link>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611587#M681172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are no other dimensions. I need a simple list of usernames. That's it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2014 07:23:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exception-expression/m-p/611587#M681172</guid>
      <dc:creator />
      <dc:date>2014-04-08T07:23:42Z</dc:date>
    </item>
  </channel>
</rss>

