<?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: Filtering data in both dimension and Fact table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30195#M4992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wouldn't "Keep" function force me to combine two tables? I want a separate dim and fact tables but results to match below SQL script.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Select distinct Item_status_code,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Count(dimItem.Item_ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM dimItem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;join FactTransaction ON dimItem.Item_ID = FactTransaction.Item_ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;WHERE Item_status_code &amp;lt;&amp;gt; '_DELETED_' AND Item_status_code &amp;lt;&amp;gt; '_INACTIVE_'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Group By tkt_custmr_reqst_type_cd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Instead what it is doing right now is ignoring my filter WHERE clause and doing either&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;1. Brings all results back&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2. Creates a separate entity for Item Status '-' that groups together 1821 rows from fact table that actually have Item Status as 'Inactive' or 'Deleted'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2018 20:05:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-05-14T20:05:01Z</dc:date>
    <item>
      <title>Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30188#M4985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am a week old to Qlikview and yet to take developer training so my question are very basic and answers must be very obvious (but unfortunately not to me :-(. Right now I'm struggling with my data model. I have two tables in my data model so far - a fact and a dimension. I do not want to bring in records with a certain status type into my data load at all as they will never be used yet they exist in my DB. I have added a WHERE clause to my dimension table load script like so: WHERE Item_status_code &amp;lt;&amp;gt; ('DELETED') and Item_status_code &amp;lt;&amp;gt; ('INACTIVE'). Now what is happening is a new status category is being created with code type as '-' which groups rows records from fact tables that doesn't have matching records in Fact Table. Fact and dimension table have one to one relationship. How do I stop the records being brought in from fact table as well is there are no matching records in DIM table. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 17:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30188#M4985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-14T17:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30189#M4986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can we see your script? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 17:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30189#M4986</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-14T17:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30190#M4987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is difficult to understand without seeing your script however I believe a keep function could be useful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/Keep.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/Keep.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/Keep.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 18:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30190#M4987</guid>
      <dc:creator>m_perreault</dc:creator>
      <dc:date>2018-05-14T18:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30191#M4988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure. My scripts are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load "Item_ID";&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM FactTransaction;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load "Item_ID",&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Item_status_code&lt;/SPAN&gt;";&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM FootLoose.dbo.dimItem&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WHERE Item_status_code &amp;lt;&amp;gt; ('DELETED') and Item_status_code &amp;lt;&amp;gt; ('INACTIVE');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 18:09:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30191#M4988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-14T18:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30192#M4989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this AND will not work here. Use OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load "Item_ID";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM FactTransaction;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load "Item_ID",&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;"&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Item_status_code&lt;/SPAN&gt;";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM FootLoose.dbo.dimItem&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;WHERE Item_status_code &amp;lt;&amp;gt; ('DELETED') &lt;STRONG style="color: #ff6600;"&gt;OR&lt;/STRONG&gt; Item_status_code &amp;lt;&amp;gt; ('INACTIVE');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 18:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30192#M4989</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-14T18:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30193#M4990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not working. &lt;/P&gt;&lt;P&gt;I want the filter to remove rows both from fact table and dimension table. The field I want to use in WHERE clause only appears in dimension table. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 19:27:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30193#M4990</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-14T19:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30194#M4991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try any one of these below?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//1st Way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;Load "Item_ID";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM FactTransaction;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right Keep&lt;/P&gt;&lt;P&gt;Dim:&lt;/P&gt;&lt;P&gt;Load "Item_ID",&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Item_status_code";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM FootLoose.dbo.dimItem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE Item_status_code &amp;lt;&amp;gt; ('DELETED') OR Item_status_code &amp;lt;&amp;gt; ('INACTIVE');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//2nd way &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim:&lt;/P&gt;&lt;P&gt;Load "Item_ID",&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Item_status_code";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM FootLoose.dbo.dimItem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE Item_status_code &amp;lt;&amp;gt; ('DELETED') OR Item_status_code &amp;lt;&amp;gt; ('INACTIVE');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;Load "Item_ID"&lt;/P&gt;&lt;P&gt;WHERE Exists("Item_ID");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM FactTransaction;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 19:57:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30194#M4991</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-14T19:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30195#M4992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wouldn't "Keep" function force me to combine two tables? I want a separate dim and fact tables but results to match below SQL script.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Select distinct Item_status_code,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Count(dimItem.Item_ID)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM dimItem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;join FactTransaction ON dimItem.Item_ID = FactTransaction.Item_ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;WHERE Item_status_code &amp;lt;&amp;gt; '_DELETED_' AND Item_status_code &amp;lt;&amp;gt; '_INACTIVE_'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Group By tkt_custmr_reqst_type_cd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Instead what it is doing right now is ignoring my filter WHERE clause and doing either&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;1. Brings all results back&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2. Creates a separate entity for Item Status '-' that groups together 1821 rows from fact table that actually have Item Status as 'Inactive' or 'Deleted'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 20:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30195#M4992</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-14T20:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30196#M4993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep won't combine two tables.&amp;nbsp; See below from Qlik's help&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;&lt;EM&gt;The &lt;/EM&gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;SPAN class="statement" data-mc-conditions="Primary.NotToTranslate" style="font-weight: bold; color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;keep&lt;/SPAN&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt; prefix is similar to the &lt;/SPAN&gt;&lt;SPAN class="statement" data-mc-conditions="Primary.NotToTranslate" style="font-weight: bold; color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;join&lt;/SPAN&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt; prefix. Just as the &lt;/SPAN&gt;&lt;SPAN class="statement" data-mc-conditions="Primary.NotToTranslate" style="font-weight: bold; color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;join&lt;/SPAN&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt; prefix, it compares the loaded table with an existing named table or the last previously created data table, but instead of joining the loaded table with an existing table, it has the effect of reducing one or both of the two tables before they are stored in &lt;/SPAN&gt;&lt;SPAN class="CommonComponentsQlikView" style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;QlikView&lt;/SPAN&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;, based on the intersection of table data. The comparison made is equivalent to a natural join made over all the common fields, i.e. the same way as in a corresponding join. However, the two tables are not joined and will be kept in &lt;/SPAN&gt;&lt;SPAN class="CommonComponentsQlikView" style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;QlikView&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;&lt;EM&gt; as two separately named tables.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;Try this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load "Item_ID",&lt;/P&gt;&lt;P&gt;"Item_status_code";&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM FootLoose.dbo.dimItem&lt;/P&gt;&lt;P&gt;WHERE Item_status_code &amp;lt;&amp;gt; ('DELETED') and Item_status_code &amp;lt;&amp;gt; ('INACTIVE');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Keep (Table1)&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load "Item_ID";&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM FactTransaction;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 20:10:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30196#M4993</guid>
      <dc:creator>m_perreault</dc:creator>
      <dc:date>2018-05-14T20:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30197#M4994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked. Thank you. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 20:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30197#M4994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-14T20:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30198#M4995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This also worked. Must say QlikView community is amazing. I'm so excited to be here!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do have one more question. I am looking at my results in a chart format, the results are correct but the rows fetched when I click on reload are still 1821 more in fact then dimension. Let me know if anyone has thoughts on this. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 20:25:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30198#M4995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-14T20:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30199#M4996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which script did you use from my thread? Right keep or Exists() ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 20:34:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30199#M4996</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-14T20:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30200#M4997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried both and both worked. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2018 14:21:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30200#M4997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-15T14:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering data in both dimension and Fact table</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30201#M4998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was the issue you were talking about here &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I do have one more question. I am looking at my results in a chart format, the results are correct but the rows fetched when I click on reload are still 1821 more in fact then dimension. Let me know if anyone has thoughts on this. Thank you!&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this resolved?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2018 14:33:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-data-in-both-dimension-and-Fact-table/m-p/30201#M4998</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-15T14:33:00Z</dc:date>
    </item>
  </channel>
</rss>

