<?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: loading values from different tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404266#M150411</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had created another table with the calendar that had the same name.&amp;nbsp; once i switched the name of the calendar, it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Mar 2013 15:00:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-03-05T15:00:38Z</dc:date>
    <item>
      <title>loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404260#M150405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create an expression in a chart that chooses the most recent date from a series of 3 date fields (Date1, Date2, Date3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date1 and Date2 are in table1, and Date3 is in table 2.&amp;nbsp; I've been trying to create a new table that contains the three dates, but have been unsuccessful thus far.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone advise as to the best way to go about getting the expression to work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 14:16:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404260#M150405</guid>
      <dc:creator />
      <dc:date>2013-03-04T14:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404261#M150406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;If your tables contain any key then by using left join you can create a new table which contains three date fields. Below is the example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Now you can write an expression to get latest dates from three date fields. Let me know if this helps you or not. Its better if you provide sample data to know your requirement and explain what expression you need&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Tab1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID, Date1, Date2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 02/03/2013, 02/03/2013&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, 03/03/2013, 03/03/2013&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, 04/03/2013, 04/03/2013&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Tab2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Left Join(Tab1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID, Date3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 02/03/2013&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, 03/03/2013&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, 04/03/2013&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 14:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404261#M150406</guid>
      <dc:creator>manideep78</dc:creator>
      <dc:date>2013-03-04T14:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404262#M150407</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;If you just want a table that contains the three dates, you can simply do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATES:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date1 as Date&lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THE_TABLE_WHERE_YOU_GET_DATE1&amp;amp;2_FROM&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;(DATES)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date2 as Date&lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THE_TABLE_WHERE_YOU_GET_DATE1&amp;amp;2_FROM&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;(DATES)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date3 as Date&lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THE_TABLE_WHERE_YOU_GET_DATE3_FROM&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will then have all you dates in the same table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I think you then want to make some analyses with these dates, so you'd better create a table CALENDAR from the dates.&lt;/P&gt;&lt;P&gt;It all depends on your model and on what you want to do, so explain more about your needs if you need more help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 14:55:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404262#M150407</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-04T14:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404263#M150408</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;For join this information in one table you need to drop one of them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example if your first table is named 'Table1' and the other is 'Table2'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with:&lt;/P&gt;&lt;P&gt;*********************************&lt;/P&gt;&lt;P&gt;left join (Table1)&lt;/P&gt;&lt;P&gt;load * Resident Table2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;drop table Table2;&lt;/P&gt;&lt;P&gt;*********************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you gained join in Table1 the three dates and Table2 is dropped&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 14:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404263#M150408</guid>
      <dc:creator>eddysanchez</dc:creator>
      <dc:date>2013-03-04T14:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404264#M150409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This suggestion helped to create the other table.&amp;nbsp; Now, the problem is that the tables are creating a loop when i load all of the data, as well as the synthetic key for Date1 and Date2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 14:24:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404264#M150409</guid>
      <dc:creator />
      <dc:date>2013-03-05T14:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404265#M150410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show your qvd or your model ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 14:28:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404265#M150410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-05T14:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: loading values from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404266#M150411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had created another table with the calendar that had the same name.&amp;nbsp; once i switched the name of the calendar, it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 15:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-values-from-different-tables/m-p/404266#M150411</guid>
      <dc:creator />
      <dc:date>2013-03-05T15:00:38Z</dc:date>
    </item>
  </channel>
</rss>

