<?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: How to create Table with Customer Name Where order Total is ZERO in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070991#M357752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks .. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Mar 2016 06:33:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-25T06:33:00Z</dc:date>
    <item>
      <title>How to create Table with Customer Name Where order Total is ZERO</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070987#M357748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff6600;"&gt;What am I trying Achieve?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I want to get a table with All the customer name and their total number of orders.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The table &lt;STRONG&gt;must&lt;/STRONG&gt; display customer names even when there are no orders against them&lt;/LI&gt;&lt;LI&gt;If there are no orders then that column should display '0' or 'NULL' &lt;/LI&gt;&lt;LI&gt;NOTE: I am not using any joins when loading both QVDs.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff6600;"&gt;What I have tried so far?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have tried Pivot table and straight table in charts as below&lt;/P&gt;&lt;P&gt;Dimension as CustomerName&lt;/P&gt;&lt;P&gt;Expression as count(OrderID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- But this is only showing customers that have placed any orders&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff6600;"&gt;Here is a small example of my data model&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff6600;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ORDER QVD&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;OrderID&lt;/LI&gt;&lt;LI&gt;OrderDate&lt;/LI&gt;&lt;LI&gt;CustomerID&lt;/LI&gt;&lt;LI&gt;etc..&lt;/LI&gt;&lt;LI&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;CUSTOMER QVD&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;CustomerID&lt;/LI&gt;&lt;LI&gt;CustomerName&lt;/LI&gt;&lt;LI&gt;etc..&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 06:14:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070987#M357748</guid>
      <dc:creator />
      <dc:date>2016-03-25T06:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Table with Customer Name Where order Total is ZERO</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070988#M357749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to load all the data&amp;nbsp; and join the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and write a condition lik &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set Nullvalue='0';&lt;/P&gt;&lt;P&gt;sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from ur datasource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where [order total]='0';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 06:23:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070988#M357749</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-25T06:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Table with Customer Name Where order Total is ZERO</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070989#M357750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&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;Un-check 'Suppress Zero Values' in presentation tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 06:27:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070989#M357750</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-03-25T06:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Table with Customer Name Where order Total is ZERO</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070990#M357751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;try creating the straight table&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;Dimension as CustomerName&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Expression as alt(count(distinct OrderID),0)&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;Go to chart Properties-&amp;gt;Presentation-&amp;gt; Uncheck Suppress zero values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 06:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070990#M357751</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-03-25T06:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Table with Customer Name Where order Total is ZERO</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070991#M357752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks .. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 06:33:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070991#M357752</guid>
      <dc:creator />
      <dc:date>2016-03-25T06:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Table with Customer Name Where order Total is ZERO</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070992#M357753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 06:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-Table-with-Customer-Name-Where-order-Total-is-ZERO/m-p/1070992#M357753</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-03-25T06:37:23Z</dc:date>
    </item>
  </channel>
</rss>

