<?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: Combine Tables by ID - Match Year Month in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1644460#M731288</link>
    <description>&lt;P&gt;Jacob, did either of the posts get you what you needed?&amp;nbsp; If so, do not forget to return to the thread and use the Accept as Solution button on the post(s) that worked for you.&amp;nbsp; This gives the poster(s) credit for the help and lets others that come across the thread confirmation that things worked.&amp;nbsp; If you are still working on things, leave an update.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
    <pubDate>Thu, 07 Nov 2019 19:27:55 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2019-11-07T19:27:55Z</dc:date>
    <item>
      <title>Combine Tables by ID - Match Year Month</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1641767#M731285</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;I have two tables (Customer, Plan). The &lt;STRONG&gt;Customer Table&lt;/STRONG&gt; is automatically imported into QV from our System, for example:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Customer Group&lt;/TD&gt;&lt;TD&gt;Earning Actual&lt;/TD&gt;&lt;TD&gt;Year&lt;/TD&gt;&lt;TD&gt;Month&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;10.000 EUR&lt;/TD&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;12.000 EUR&lt;/TD&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;Plan Table&lt;/STRONG&gt; is created by Excel and manually imported into QV, for example:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Customer Group&lt;/TD&gt;&lt;TD&gt;Earning Plan&lt;/TD&gt;&lt;TD&gt;Year Plan&lt;/TD&gt;&lt;TD&gt;Month Plan&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;11.000 EUR&lt;/TD&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;12.000 EUR&lt;/TD&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a Graph with Month as Dimension (Year and Customer Group as Filter Options), showing me the&amp;nbsp;Plan and Actual Earnings in curves.&lt;/P&gt;&lt;P&gt;So, I combined the tables by the&amp;nbsp;field Customer Group. But how&amp;nbsp;can I determine a common Time Dimension for the Graph?&lt;/P&gt;&lt;P&gt;Do you have any Ideas &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:46:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1641767#M731285</guid>
      <dc:creator>JacobLag</dc:creator>
      <dc:date>2024-11-16T19:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Tables by ID - Match Year Month</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1641785#M731286</link>
      <description>&lt;P&gt;Hello Jacob,&lt;/P&gt;&lt;P&gt;I would combine the two tables into one. You then get one month field and one year field which you can use as dimensions. Each line then has an [Earning actual] and [Earning plan] for that month. You script would be something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Earnings:&lt;BR /&gt;load * inline&lt;BR /&gt;[&lt;BR /&gt;Customer Group, Earning Actual, Year, Month&lt;BR /&gt;A, 10000, 2019, 1&lt;BR /&gt;B, 12000, 2019, 1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Earning_Plans:&lt;BR /&gt;load * inline&lt;BR /&gt;[&lt;BR /&gt;Customer Group, Earning Plan, Year Plan, Month Plan,&lt;BR /&gt;A, 11000, 2019, 1&lt;BR /&gt;B, 12000, 2019, 1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;left join (Earnings)&lt;/P&gt;&lt;P&gt;load&lt;BR /&gt;[Customer Group],&lt;BR /&gt;[Earning Plan],&lt;BR /&gt;[Year Plan] as Year,&lt;BR /&gt;[Month Plan] as Month&lt;BR /&gt;resident Earning_Plans;&lt;/P&gt;&lt;P&gt;drop table Earning_Plans;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 15:42:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1641785#M731286</guid>
      <dc:creator>Tim_Wensink</dc:creator>
      <dc:date>2019-10-31T15:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Tables by ID - Match Year Month</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1641787#M731287</link>
      <description>&lt;P&gt;Script:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FinalTable:
NOCONCATENATE
LOAD
	'Customer' AS Type,
    "Customer Group",
    "Earning Actual",
     Year,
     Month
FROM YourSystem
;
CONCATENATE(FinalTable)
LOAD
	'Plan' AS Type,
    "Customer Group",
    "Earning Plan",
    "Year Plan" AS Year,
    "Month Plan" AS Month
FROM YourExcelFile;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measures:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sum([Earning Actual])&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Sum([Earning Plan])&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 31 Oct 2019 15:43:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1641787#M731287</guid>
      <dc:creator>JGMDataAnalysis</dc:creator>
      <dc:date>2019-10-31T15:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Tables by ID - Match Year Month</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1644460#M731288</link>
      <description>&lt;P&gt;Jacob, did either of the posts get you what you needed?&amp;nbsp; If so, do not forget to return to the thread and use the Accept as Solution button on the post(s) that worked for you.&amp;nbsp; This gives the poster(s) credit for the help and lets others that come across the thread confirmation that things worked.&amp;nbsp; If you are still working on things, leave an update.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:27:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1644460#M731288</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-11-07T19:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Combine Tables by ID - Match Year Month</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1644641#M731289</link>
      <description>&lt;P&gt;Thank you very much &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; it worked&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 07:59:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-Tables-by-ID-Match-Year-Month/m-p/1644641#M731289</guid>
      <dc:creator>JacobLag</dc:creator>
      <dc:date>2019-11-08T07:59:46Z</dc:date>
    </item>
  </channel>
</rss>

