<?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: Help with Sales vs Forecast in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846143#M657663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Question number one - do you need Product level granularity in Sales?&amp;nbsp; If not, there is an easy solution - replace Product with Product Group in Sales, and concatenate Sales and Forecast into one facts table.&lt;/P&gt;&lt;P&gt;If you need Product level in Sales, it will be a more complex solution, probably using a link table in the data model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 May 2015 18:43:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-05-12T18:43:29Z</dc:date>
    <item>
      <title>Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846142#M657662</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;I'm trying to figure out a way to compare my monthly sales with the forecasted value for each month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm getting this circle problem attached (I've cutted other columns to simplify)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 18:22:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846142#M657662</guid>
      <dc:creator />
      <dc:date>2015-05-12T18:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846143#M657663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Question number one - do you need Product level granularity in Sales?&amp;nbsp; If not, there is an easy solution - replace Product with Product Group in Sales, and concatenate Sales and Forecast into one facts table.&lt;/P&gt;&lt;P&gt;If you need Product level in Sales, it will be a more complex solution, probably using a link table in the data model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 18:43:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846143#M657663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-12T18:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846144#M657664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Michael, thank you for your kindly answer. Could you guide me thru that? &lt;/P&gt;&lt;P&gt;I don't see how can I concatenate my Group Sales into a New Table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 19:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846144#M657664</guid>
      <dc:creator />
      <dc:date>2015-05-12T19:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846145#M657665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming you have resident tables as on our screenshot, here is how you can do it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductGroupMap:&lt;BR /&gt;MAPPING LOAD DISTINCT&lt;BR /&gt; Product as A,&lt;BR /&gt; "Group of Product" as B&lt;BR /&gt;RESIDENT ProductTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Forecast) LOAD&lt;BR /&gt; applymap('ProductGroupMap',Product) as "Group of Product",&amp;nbsp; // this replaces Product with the Group of Products&lt;BR /&gt; Month,&lt;BR /&gt; Sales,&lt;BR /&gt; Date&lt;BR /&gt;RESIDENT Sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a result, you get one table named Forecast with the both Forecast and Sales data.&lt;BR /&gt;Reminder - in this case you don't have Sales on the Product level anymore.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2015 20:12:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846145#M657665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-12T20:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846146#M657666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael, &lt;/P&gt;&lt;P&gt;So that's what I've got:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date) as Month &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sales);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Group of Product]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is ProductTable);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LOAD [Group of Product], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Monthly Forecast by Group]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Forecast);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ProductGroupMap:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;MAPPING LOAD DISTINCT&lt;/P&gt;&lt;P&gt;Product as A,&lt;/P&gt;&lt;P&gt;[Group of Product] as B&lt;/P&gt;&lt;P&gt;RESIDENT ProductTable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Forecast) LOAD&lt;/P&gt;&lt;P&gt;applymap('ProductGroupMap',Product) as [Group of Product],&lt;/P&gt;&lt;P&gt;Month,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;RESIDENT Sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I'm still getting this &lt;SPAN style="text-decoration: underline;"&gt;updated&lt;/SPAN&gt; circle problem:&lt;IMG alt="QView Problem 2.png" class="jive-image image-1" src="/legacyfs/online/86561_QView Problem 2.png" style="height: 260px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Appreciate your help,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 13:20:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846146#M657666</guid>
      <dc:creator />
      <dc:date>2015-05-14T13:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846147#M657667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to drop the Sales table at the end:&lt;/P&gt;&lt;P&gt;DROP TABLE Sales;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 13:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846147#M657667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T13:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Sales vs Forecast</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846148#M657668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah. You got it. &lt;/P&gt;&lt;P&gt;Thanks mate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 13:51:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Sales-vs-Forecast/m-p/846148#M657668</guid>
      <dc:creator />
      <dc:date>2015-05-14T13:51:11Z</dc:date>
    </item>
  </channel>
</rss>

