<?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. :Re: Re. :Ignore selection without Set Analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161589#M35407</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, Selection in my listbox (2 listboxes to be exactly) needs to be ignored in my expression.&lt;/P&gt;&lt;P&gt;Normaly what I would do with Set Analysis is: SUM({$&amp;lt;Month2= &amp;gt;}#amount)&lt;/P&gt;&lt;P&gt;In the example above the field Month2 will be ignored. And Month2 is not a dimension in my chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 May 2010 14:56:47 GMT</pubDate>
    <dc:creator>dpietersz</dc:creator>
    <dc:date>2010-05-21T14:56:47Z</dc:date>
    <item>
      <title>Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161580#M35398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to do a sum() for the current month but ignoring a specific selection. The catch is that I only have QV 8.2. So no Set Analysis.&lt;/P&gt;&lt;P&gt;The thing I have right now is:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;STRONG&gt;SUM(IF([Quotation year] = YEAR(TODAY()) AND [Quotation Month] = MONTH(TODAY()), #quotation_amount))&lt;/STRONG&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I have a projecthours date field which I need to ignore in the expression. Don't know if this is even possible in v8.2.&lt;/P&gt;&lt;P&gt;Yes, I know upgrading is the best answer but for a lot of reasons this is no option right now.&lt;/P&gt;&lt;P&gt;Anyone a good idea how to solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 13:49:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161580#M35398</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T13:49:19Z</dc:date>
    </item>
    <item>
      <title>Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161581#M35399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Have you tried with the 'ALL' or 'TOTAL' qualifiers ? Like that :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum(ALL ...)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;or &lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum(TOTAL ...)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 13:54:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161581#M35399</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-21T13:54:56Z</dc:date>
    </item>
    <item>
      <title>Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161582#M35400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I tried those. No luck with that &lt;IMG alt="Sad" src="http://community.qlik.com/emoticons/emotion-6.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:02:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161582#M35400</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T14:02:15Z</dc:date>
    </item>
    <item>
      <title>Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161583#M35401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am currently using 8.2.&lt;/P&gt;&lt;P&gt;I use the sum(all &amp;lt;field_names&amp;gt; &amp;lt;expression&amp;gt;) and works absolutely fine.&lt;/P&gt;&lt;P&gt;Sum(all &amp;lt;expression&amp;gt;) ignores all selections and dimensions.&lt;/P&gt;&lt;P&gt;so if you need it to consider certain dimension, then you need to specify those fields (lets say f1 &amp;amp; f2)&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;sum(all &amp;lt;f1,f2&amp;gt; Amount)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:08:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161583#M35401</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-21T14:08:37Z</dc:date>
    </item>
    <item>
      <title>Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161584#M35402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if I understand you correctly.&lt;/P&gt;&lt;P&gt;f1 &amp;amp; f2 are fields that can be selected by the end user and have effect on my expression. All other fields are ignored?&lt;/P&gt;&lt;P&gt;In my case I have about 30 fields an end-user can make selections on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161584#M35402</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T14:30:13Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161585#M35403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;f1 &amp;amp; f2 are dimensions of your chart.&lt;/P&gt;&lt;P&gt;This syntax only works in a chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161585#M35403</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-21T14:42:58Z</dc:date>
    </item>
    <item>
      <title>Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161586#M35404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, you got it wrong.&lt;/P&gt;&lt;P&gt;Irrespective of total number of fields - you can create a table with dimension f1,f2 and say just one expresion E1.&lt;/P&gt;&lt;P&gt;now for a given row E1 should correspond to the values F1 and F2 if Sum(ALL ) is not used.&lt;/P&gt;&lt;P&gt;if ALL is used - it ignores the current values in F1 and F2 and any selections made on the remaining fields as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:45:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161586#M35404</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-21T14:45:04Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161587#M35405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;Then I can not use the solution. The fields I need to ignore are listboxes not in my chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:47:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161587#M35405</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T14:47:01Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161588#M35406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I got it wrong now.&lt;/P&gt;&lt;P&gt;So, should a selection on the list box effect the calculations?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:52:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161588#M35406</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-21T14:52:38Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161589#M35407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, Selection in my listbox (2 listboxes to be exactly) needs to be ignored in my expression.&lt;/P&gt;&lt;P&gt;Normaly what I would do with Set Analysis is: SUM({$&amp;lt;Month2= &amp;gt;}#amount)&lt;/P&gt;&lt;P&gt;In the example above the field Month2 will be ignored. And Month2 is not a dimension in my chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:56:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161589#M35407</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T14:56:47Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161590#M35408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, if you have a chart with 3 dimensions (D1, D2 and D3) and 4 expressions (E1,E2, E3 and E4) :&lt;/P&gt;&lt;P&gt;E1 depends of chart's dimensions and selections&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;E1 = sum(Value)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;E2 depends of chart's dimensions and not selections&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;E2 = sum(ALL &amp;lt;D1,D2,D3&amp;gt;Value)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;E3 depends of your selections and not chart's dimensions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;E3 = sum(TOTAL Value)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;E4 disregards selections and dimensions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;E4 = sum(ALL Value)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Is that helps you ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 14:57:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161590#M35408</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-21T14:57:01Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161591#M35409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Martin,&lt;/P&gt;&lt;P&gt;That's a good example.&lt;/P&gt;&lt;P&gt;Thanks man.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161591#M35409</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-21T15:13:27Z</dc:date>
    </item>
    <item>
      <title>Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161592#M35410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good overview, but the combination I need is not in there.&lt;/P&gt;&lt;P&gt;I have attached an example of the basic thing i'm looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:20:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161592#M35410</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T15:20:24Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161593#M35411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't understand why you want to see QuotationID 1 in your example.&lt;/P&gt;&lt;P&gt;When you select 05/05/2010, you filter on QuotationID 3 which is associate. QuotationID 1 is associate to 05/05/2010 for the quotationDate and not the ProjectHourDate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:26:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161593#M35411</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-05-21T15:26:29Z</dc:date>
    </item>
    <item>
      <title>Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161594#M35412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So right now when nothing is selected - it shows id - 1 and date 5/5 amount - 5K&lt;/P&gt;&lt;P&gt;So what do u want to display when Reponsible/Project name is selected??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161594#M35412</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-21T15:27:22Z</dc:date>
    </item>
    <item>
      <title>Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161595#M35413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dint exactly get what you need.&lt;/P&gt;&lt;P&gt;But try this and let me know if this is what you are looking for?&lt;/P&gt;&lt;P&gt;SUM(all &amp;lt;QuotationID, QuotationName&amp;gt; IF(MONTH(QuotationDate) = MONTH(TODAY()),Amount))&lt;/P&gt;&lt;P&gt;replace ur current expression with the above one.&lt;/P&gt;&lt;P&gt;Let me know if it works!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161595#M35413</guid>
      <dc:creator>boorgura</dc:creator>
      <dc:date>2010-05-21T15:31:40Z</dc:date>
    </item>
    <item>
      <title>Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161596#M35414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The chart is an overview of all quotations for the roling month. But normally in the bussiness process these are new quotations and 99% of the time their is nobody working on a new quotation because it's not officially closed as a deal.&lt;/P&gt;&lt;P&gt;On my other tabs I have overviews showing capacitiy, hour transactions, etc. In these sheets you need have a year selected at all times.&lt;/P&gt;&lt;P&gt;But by doing so this has effect on my quotations overview for the rolling month. It will only show new quotations where hours are made by employees. So that is why I need to ignore selections from my Projecthours table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161596#M35414</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T15:38:09Z</dc:date>
    </item>
    <item>
      <title>Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161597#M35415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's working in the example. But within my original QVW with a bit more complex data cloud it's not doing what I want.&lt;/P&gt;&lt;P&gt;But thx for your help guys. I've almost got it working thanks to you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 May 2010 15:55:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161597#M35415</guid>
      <dc:creator>dpietersz</dc:creator>
      <dc:date>2010-05-21T15:55:31Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Ignore selection without Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161598#M35416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes! Really good example. Simple to understand. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Helps and Reference Guides should be plenty of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 19:52:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ignore-selection-without-Set-Analysis/m-p/161598#M35416</guid>
      <dc:creator>bimartingo</dc:creator>
      <dc:date>2012-03-01T19:52:17Z</dc:date>
    </item>
  </channel>
</rss>

