<?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 Merge two lists with similar data type in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224734#M77107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simplest, though perhaps not the most efficient, would be to load open_date and close date in to two different tables then rename them to a common name. You could then concatenate the two tables and then join them back to the original table based on a common key. See below.&lt;/P&gt;&lt;P&gt;tab1:&lt;/P&gt;&lt;P&gt;load widget,&lt;BR /&gt; opening_date,&lt;BR /&gt; closing_date from widget.csv;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;tab2:&lt;BR /&gt; load widget,&lt;BR /&gt; opening_date as date resident tab1;&lt;BR /&gt;concatenate&lt;BR /&gt; load widget,&lt;BR /&gt; closing_date as date resident tab1;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;noconcatenate&lt;BR /&gt;final:&lt;BR /&gt;load widget,&lt;BR /&gt; opening_date,&lt;BR /&gt; closing_date resident tab1;&lt;BR /&gt;left join&lt;BR /&gt; load widget,&lt;BR /&gt; date resident tab2;&lt;BR /&gt;drop table tab1,tab2;&lt;/P&gt;&lt;P&gt;This would leave you with one table named final with columns for widget, opening_date, closing_date and date. date would be the dimension you could use for your chart. Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Dec 2010 21:01:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-15T21:01:40Z</dc:date>
    <item>
      <title>Merge two lists with similar data type</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224733#M77106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I'm struggling in Qlikview to do something very simple, so I ask your help:&lt;/P&gt;&lt;P&gt;I need to merge two lists of dates (I have day, month and year in both lists) to a complete list of dates, to use as a graphic dimension. One list is the opening date of a request, and the other is the closing date. The lists are from the same table in two different variables, eg. open_date and close_date. My graphic needs to show all dates as dimension, to count both opened and closed requests on the same dates.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 20:48:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224733#M77106</guid>
      <dc:creator />
      <dc:date>2010-12-15T20:48:07Z</dc:date>
    </item>
    <item>
      <title>Merge two lists with similar data type</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224734#M77107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The simplest, though perhaps not the most efficient, would be to load open_date and close date in to two different tables then rename them to a common name. You could then concatenate the two tables and then join them back to the original table based on a common key. See below.&lt;/P&gt;&lt;P&gt;tab1:&lt;/P&gt;&lt;P&gt;load widget,&lt;BR /&gt; opening_date,&lt;BR /&gt; closing_date from widget.csv;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;tab2:&lt;BR /&gt; load widget,&lt;BR /&gt; opening_date as date resident tab1;&lt;BR /&gt;concatenate&lt;BR /&gt; load widget,&lt;BR /&gt; closing_date as date resident tab1;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;noconcatenate&lt;BR /&gt;final:&lt;BR /&gt;load widget,&lt;BR /&gt; opening_date,&lt;BR /&gt; closing_date resident tab1;&lt;BR /&gt;left join&lt;BR /&gt; load widget,&lt;BR /&gt; date resident tab2;&lt;BR /&gt;drop table tab1,tab2;&lt;/P&gt;&lt;P&gt;This would leave you with one table named final with columns for widget, opening_date, closing_date and date. date would be the dimension you could use for your chart. Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 21:01:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224734#M77107</guid>
      <dc:creator />
      <dc:date>2010-12-15T21:01:40Z</dc:date>
    </item>
    <item>
      <title>Merge two lists with similar data type</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224735#M77108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks tray! I have just changed the variables names in the &lt;I&gt;final:&lt;/I&gt; table not to generate $syn tables, and the solution worked just fine!&lt;/P&gt;&lt;P&gt;noconcatenate&lt;BR /&gt;final:&lt;BR /&gt;load widget,&lt;BR /&gt; opening_date &lt;B&gt;&lt;I&gt;as open&lt;/I&gt;&lt;/B&gt;,&lt;BR /&gt; closing_date &lt;I&gt;&lt;B&gt;as close&lt;/B&gt;&lt;/I&gt;&lt;BR /&gt;resident tab1;&lt;BR /&gt;left join&lt;BR /&gt; load widget,&lt;BR /&gt; date resident tab2;&lt;BR /&gt;drop table tab1,tab2;&lt;/P&gt;&lt;P&gt;tks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 21:44:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-lists-with-similar-data-type/m-p/224735#M77108</guid>
      <dc:creator />
      <dc:date>2010-12-15T21:44:07Z</dc:date>
    </item>
  </channel>
</rss>

