<?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 Help me Please :) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281137#M104585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution probably depends a bit on your data model, but you could try creating a chart with dimension Date and then as expression something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=sum(aggr( if( Date = FirstSortedValue(total&amp;lt;Product&amp;gt; Date,Date),1,0), Product,Date))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Feb 2012 13:26:05 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-02-14T13:26:05Z</dc:date>
    <item>
      <title>Help me Please :)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281136#M104584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me with this please &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list of products as shown below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to detect the first time this product was sold &amp;amp; then draw a graph were the date is the dimension and the number of products sold for the first time is presented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i mean to have a graph identfying that :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on Sunday : 6 products were sold for the first time.&lt;/P&gt;&lt;P&gt;on monday : 4 products were sold for the first time.&lt;/P&gt;&lt;P&gt;on Tuesday : 1 product was sold for the first time.&lt;/P&gt;&lt;P&gt;on Wednesday: 4 products were sold for the first time.&lt;/P&gt;&lt;P&gt;on Thursday: 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/11251_Untitled.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot guys &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 13:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281136#M104584</guid>
      <dc:creator />
      <dc:date>2012-02-14T13:20:13Z</dc:date>
    </item>
    <item>
      <title>Help me Please :)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281137#M104585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution probably depends a bit on your data model, but you could try creating a chart with dimension Date and then as expression something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=sum(aggr( if( Date = FirstSortedValue(total&amp;lt;Product&amp;gt; Date,Date),1,0), Product,Date))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 13:26:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281137#M104585</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-02-14T13:26:05Z</dc:date>
    </item>
    <item>
      <title>Help me Please :)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281138#M104586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this easily in your Script.&amp;nbsp; Usually I handle this in script by adding a additional flag.&amp;nbsp; By using this flag I calculate the New Products count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Products:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProductID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OrderID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Previous(ProductID) &amp;lt;&amp;gt; ProductID, 1, 0) AS IsNewProductSold&lt;/P&gt;&lt;P&gt;FROM DataSource&lt;/P&gt;&lt;P&gt;ORDER BY Customer, OrderID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, just using Sum(IsNewProductSold) you can get the NewProducts count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 14:37:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-me-Please/m-p/281138#M104586</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-02-14T14:37:08Z</dc:date>
    </item>
  </channel>
</rss>

