<?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: Join not working correctly !! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791532#M1041428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date( Floor ( [Transaction Date] ), 'DD.MM.YYYY') as TransacDate,&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>Mon, 08 Dec 2014 11:15:47 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2014-12-08T11:15:47Z</dc:date>
    <item>
      <title>Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791523#M1041419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;In my application , join is not working corretly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 2 tables. If Server_Analysis1. Event = Server_Analysis2. Event and Server_Analysis1.StartDate = Server_Analysis2.StartDate and Server_Analysis1. EndDate = Server_Analysis2. EndDate&amp;nbsp;&amp;nbsp; then ,&amp;nbsp; tot hat corresponding rows , Server_Analysis2. StartTime and Server_Analysis2. EndTime (these 2 new columns get added).&amp;nbsp; &lt;/P&gt;&lt;P&gt;But when i put join , a new rows gets added instead of adding 2 columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please 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>Mon, 08 Dec 2014 06:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791523#M1041419</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-08T06:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791524#M1041420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are doing the full outer join based on the field "EventState Type" but there is no common data b/w the 2 tables for this field. so the data will come from both the tables, if there is no match.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 07:56:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791524#M1041420</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-12-08T07:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791525#M1041421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heyy,&lt;/P&gt;&lt;P&gt;I didnt get you.&lt;/P&gt;&lt;P&gt;In serveranalysis1 and server analysis2 :&lt;/P&gt;&lt;P&gt;I have event state type type(serverdown) , startdate and enddate common for&lt;/P&gt;&lt;P&gt;some rows. Then why there is no join between them ??&lt;/P&gt;&lt;P&gt;On 08-Dec-2014 1:27 PM, "pradeep taniparthy" &amp;lt;qcwebmaster@qlikview.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 08:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791525#M1041421</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-08T08:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791526#M1041422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use left join ()&lt;/P&gt;&lt;P&gt;Event you can go for Mapping option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;Server_Analysis1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[EventState Type] as Event,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date([Event Start Time], 'DD.MM.YYYY') as StartDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date([Event End Time], 'DD.MM.YYYY') as EndDate,&lt;/P&gt;&lt;P&gt;Time([Event Start Time] + '2:30:00', 'hh:mm:ss') as StartTime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time([Event End Time]&amp;nbsp; + '2:30:00', 'hh:mm:ss') as EndTime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName([Event Start Time]) as Month_Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(-(Date([Event Start Time]) - Date([Event End Time])))as Duration&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Event Start Time] ,&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Event End Time],&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Event Duration],&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [EventState Information],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &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 [Detaied Report]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #575757; font-size: 12pt;"&gt;left join Join(Server_Analysis1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Server_Analysis2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD [EventState Type] as Event ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartDate ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EndDate&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartTime as Downtime_StartTime ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EndTime as Downtime_EndTime&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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 Sheet1) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 08:39:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791526#M1041422</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2014-12-08T08:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791527#M1041423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;IT is still giving same result !!&lt;/P&gt;&lt;P&gt;What to do ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 09:13:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791527#M1041423</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-08T09:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791528#M1041424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mean to say...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Server_Analysis1 table, the field 'Event' has the values&lt;/P&gt;&lt;P&gt;HOST UP (HARD),&lt;/P&gt;&lt;P&gt;HOST DOWN (HARD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Server_Analysis1 table, the field 'Event' has the values&lt;/P&gt;&lt;P&gt;Server_DOWN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you join based on this field you won't get any matching recording from both tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 10:02:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791528#M1041424</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-12-08T10:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791529#M1041425</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 think i have put up old file,&lt;/P&gt;&lt;P&gt;New File is attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 10:09:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791529#M1041425</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-08T10:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791530#M1041426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it correct that wanting to join on Event, StartDate and EndDate as they are the common fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN Server_Analysis1 does tge Event Start Time have date and time?&amp;nbsp; That maybe problem.&amp;nbsp; The date( ) function you wrap it in only changes the format, not the value.&amp;nbsp; It may still be joining on the full datetime and so no match.&amp;nbsp; Maybe try wrapping in a floor () function to remove time portion. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 10:33:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791530#M1041426</guid>
      <dc:creator>michael_anthony</dc:creator>
      <dc:date>2014-12-08T10:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791531#M1041427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;How to use floor in date??&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, 08 Dec 2014 11:12:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791531#M1041427</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-12-08T11:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Join not working correctly !!</title>
      <link>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791532#M1041428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date( Floor ( [Transaction Date] ), 'DD.MM.YYYY') as TransacDate,&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>Mon, 08 Dec 2014 11:15:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-not-working-correctly/m-p/791532#M1041428</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-08T11:15:47Z</dc:date>
    </item>
  </channel>
</rss>

