<?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: Re: Help regarding LOAD !! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784123#M1043704</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I ahve attached the samples.&lt;/P&gt;&lt;P&gt;In this i have to put Downtime_Starttime and DOwntime_EndTime in front of matching STARTDate , EndDate and Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But using join it add another line instead.&lt;/P&gt;&lt;P&gt;Pla Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Dec 2014 11:14:44 GMT</pubDate>
    <dc:creator>nikhilgarg</dc:creator>
    <dc:date>2014-12-05T11:14:44Z</dc:date>
    <item>
      <title>Help regarding LOAD !!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784119#M1043700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;I have 2 different tables having 3 common columns:&lt;/P&gt;&lt;P&gt;StartDate , EndDate , Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Now i have to include a new column for each matching (&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;StartDate , EndDate , Event) in first column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;How can i do this in LOAD statement ??&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784119#M1043700</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-05T10:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding LOAD !!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784120#M1043701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load StartDate , EndDate , Event,1 As Flag1 Inline [&lt;/P&gt;&lt;P&gt;StartDate , EndDate , Event&lt;/P&gt;&lt;P&gt;1/1/2014,10/10/2014,1&lt;/P&gt;&lt;P&gt;1/1/2014,11/10/2014,1&lt;/P&gt;&lt;P&gt;1/1/2014,12/10/2014,1 ];&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;Load StartDate , EndDate , Event,1 As Flag2 Inline [&lt;/P&gt;&lt;P&gt;StartDate , EndDate , Event&lt;/P&gt;&lt;P&gt;1/1/2014,10/10/2014,1&lt;/P&gt;&lt;P&gt;2/1/2014,11/10/2014,1&lt;/P&gt;&lt;P&gt;1/1/2014,12/10/2014,1 ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;Load *,If(Flag1=Flag2,'Matching') As NewField Resident Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table Temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:44:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784120#M1043701</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-12-05T10:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding LOAD !!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784121#M1043702</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;there is a number of ways:&lt;/P&gt;&lt;P&gt;1) You load one table first, and include WHERE EXISTS clauses in the other two LOADs so that only matching entries are loaded at all.&lt;/P&gt;&lt;P&gt;2) You join the three tables - or just join the two date_fields from two of the tables to the third - so you have all the date_fields (9 in total) in one table and you can easily see where they match and create a new field based on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:46:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784121#M1043702</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2014-12-05T10:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding LOAD !!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784122#M1043703</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 try many ways for this&lt;/P&gt;&lt;P&gt;1. Join this table or create single one&lt;/P&gt;&lt;P&gt;2. Make single key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want single field in another table then do like below load script and let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;Load StartDate, EndDate, Event, StartDate&amp;amp;EndDate&amp;amp;Event as Key;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartDate, EndDate, Event&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2014, 10/10/2014, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2014, 11/10/2014, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2014, 12/10/2014, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Tab2:&lt;/P&gt;&lt;P&gt;load StartDate&amp;amp;EndDate&amp;amp;Event as Key2;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartDate, EndDate, Event&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2014, 10/10/2014, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2/1/2014, 11/10/2014, 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1/1/2014, 12/10/2014, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Key as %Key&lt;/P&gt;&lt;P&gt;Resident Tab1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Key2 as %Key&lt;/P&gt;&lt;P&gt;Resident Tab2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 11:06:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784122#M1043703</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-05T11:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Help regarding LOAD !!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784123#M1043704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;I ahve attached the samples.&lt;/P&gt;&lt;P&gt;In this i have to put Downtime_Starttime and DOwntime_EndTime in front of matching STARTDate , EndDate and Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But using join it add another line instead.&lt;/P&gt;&lt;P&gt;Pla Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 11:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784123#M1043704</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-05T11:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding LOAD !!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784124#M1043705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hey,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I ahve attached the samples.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;In this i have to put Downtime_Starttime and DOwntime_EndTime in front of matching STARTDate , EndDate and Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;But using join it add another line instead.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pla Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 11:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-regarding-LOAD/m-p/784124#M1043705</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-05T11:40:13Z</dc:date>
    </item>
  </channel>
</rss>

