<?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 exclude outlets from calculation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784551#M1024879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi qv community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ich have the following problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have imported an excellist into qlikview! fieldnames= outlet and value&lt;/P&gt;&lt;P&gt;with this data i made my metrics and diagrams in qv. but now i got a second excellist with some outlets which should be excluded from my calculations. how can i prepare my script in order to exclude these outlets?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx for your help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Mar 2015 13:20:07 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2015-03-11T13:20:07Z</dc:date>
    <item>
      <title>exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784551#M1024879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi qv community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ich have the following problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have imported an excellist into qlikview! fieldnames= outlet and value&lt;/P&gt;&lt;P&gt;with this data i made my metrics and diagrams in qv. but now i got a second excellist with some outlets which should be excluded from my calculations. how can i prepare my script in order to exclude these outlets?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx for your help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:20:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784551#M1024879</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2015-03-11T13:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784552#M1024880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd go for an inline load of the list of outlets to exclude, if this list is not too big. This prior to the regular load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then on your regular load for the table, you add a 'where not exists' clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784552#M1024880</guid>
      <dc:creator>puttemans</dc:creator>
      <dc:date>2015-03-11T13:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784553#M1024881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would load the second xls first as a mapping-table and create with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(applymap('Map_Excluded', outlet, '#NV') = '#NV', 1, 0) as ExcludedFlag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an additional field in your main-list. Then you could select over this field or include this field in your chart-expression, like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(value) * ExcludedFlag&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;sum({&amp;lt; ExcludedFlag = {1}&amp;gt;} value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:29:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784553#M1024881</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-11T13:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784554#M1024882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just load that "exclusion_list" first and then use a WHERE NOT EXISTS() clause in the LOAD for the other list. Look it up in the help_file.&lt;/P&gt;&lt;P&gt;=&amp;gt; That way, only those values will be loaded which are not present in the previously loaded "exclusion_list".&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784554#M1024882</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-03-11T13:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784555#M1024883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;RemovedOutlets:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load * inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Outlet&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;D &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Outlets:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load * inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Outlet, Value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;A,12&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;B,23&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;C,45&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;D,32&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;] where Not Exists(Outlet);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;drop table RemovedOutlets;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace the two loads with your real load statements for the Excel files but keep the "&lt;SPAN style="font-size: 13.3333330154419px;"&gt;where Not Exists(Outlet)"&lt;/SPAN&gt;&amp;nbsp; clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:36:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784555#M1024883</guid>
      <dc:creator>Ralf-Narfeldt</dc:creator>
      <dc:date>2015-03-11T13:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784556#M1024884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But if i am not wrong then in this case we have to join both the tables either with join or concatenate. Isn't it??&lt;/P&gt;&lt;P&gt;and also in that case too would we be able to exclude the specified outlets?? &lt;/P&gt;&lt;P&gt;Plz tell&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:43:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784556#M1024884</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2015-03-11T13:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784557#M1024885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A comment to the suggestions about removing the data with a where-clause - these excluded data aren't available within the app - if you need these data for other calculations or to flexible switch and check the results you need an approach to keep all data within the app and identify them, like above mentioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784557#M1024885</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-11T13:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784558#M1024887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This would be an alternative if you want to keep the data for removed outlets.&lt;/P&gt;&lt;P&gt;You'd get a field &lt;SPAN style="font-size: 13.3333330154419px;"&gt;ExistingOutlet that is True for existing Outlet and False for removed Outlets.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Removed:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Outlet&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;D&amp;nbsp; &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outlets:&lt;/P&gt;&lt;P&gt;Load *, If(Exists(Outlet), False(), True()) As ExistingOutlet;&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Outlet, Value&lt;/P&gt;&lt;P&gt;A,12&lt;/P&gt;&lt;P&gt;B,23&lt;/P&gt;&lt;P&gt;C,45&lt;/P&gt;&lt;P&gt;D,32&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Removed;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 13:52:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784558#M1024887</guid>
      <dc:creator>Ralf-Narfeldt</dc:creator>
      <dc:date>2015-03-11T13:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784559#M1024889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hi marcus, thank you for your answer:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 8pt;"&gt;i tried like you said, but when running the script QV gives the message: Generic tables shoud have three fields&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 8pt;"&gt;Here is how my script looks like:&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 8pt;"&gt;Excluded_Outlets:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mapping&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AWS_Recherchen&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;excluded_outlets&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; [AuszuschließendeBetriebe.xlsx]&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Tabelle1); &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; QVD_Recherchen:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AWS_Recherchen&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Datum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'AK_' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;makeweekdate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;left&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Datum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 4), &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;subfield&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Datum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, ' ', -1), 0),'YYYYMMDD') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Referal_Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Daten_Recherchen&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;applymap&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('Excluded_Outlets', &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AWS_Recherchen&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&amp;nbsp; '#NV') =&amp;nbsp; '#NV', 1, 0) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;ExcludedFlag&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; [RecherchenTest.qvd]&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;); &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;What am i doing wrong?&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 14:07:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784559#M1024889</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2015-03-11T14:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784560#M1024890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A mapping table need always two fields - for this you could simply duplicate this field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Excluded_Outlets:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mapping&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AWS_Recherchen, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AWS_Recherchen&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;excluded_outlets&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; [AuszuschließendeBetriebe.xlsx]&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Tabelle1); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 14:15:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784560#M1024890</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-11T14:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: exclude outlets from calculation</title>
      <link>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784561#M1024891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus, thank you very very much, now it works &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Mar 2015 14:21:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exclude-outlets-from-calculation/m-p/784561#M1024891</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2015-03-11T14:21:22Z</dc:date>
    </item>
  </channel>
</rss>

