<?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: selection new row in different table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428809#M511957</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi federico,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the following script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;TABLE1&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;name2&lt;/P&gt;&lt;P&gt;name3&lt;/P&gt;&lt;P&gt;name4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table2:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;TABLE2&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;name2&lt;/P&gt;&lt;P&gt;name666&lt;/P&gt;&lt;P&gt;name676&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (table2)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;TABLE1 as TABLE2,&lt;/P&gt;&lt;P&gt;1 as [Flag TABLE1]&lt;/P&gt;&lt;P&gt;Resident table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(table1)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;TABLE2,&lt;/P&gt;&lt;P&gt;[Flag TABLE1]&lt;/P&gt;&lt;P&gt;Resident table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;TABLE1,&lt;/P&gt;&lt;P&gt;TABLE2,&lt;/P&gt;&lt;P&gt;[Flag TABLE1],&lt;/P&gt;&lt;P&gt;if(not IsNull(TABLE2) and IsNull([Flag TABLE1]),1,0) as [Flag New Record]&lt;/P&gt;&lt;P&gt;Resident table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll get the new records you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached the QVW I used and result on the below picture.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Sample.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/185758_Sample.png" style="height: 349px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Dec 2017 12:33:32 GMT</pubDate>
    <dc:creator>felipedl</dc:creator>
    <dc:date>2017-12-05T12:33:32Z</dc:date>
    <item>
      <title>selection new row in different table</title>
      <link>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428808#M511956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;i've two straight tables with same columns but in the second one i've new record. I would to highlight those new record by color text or background.&lt;/P&gt;&lt;P&gt;Source code from sql db&lt;/P&gt;&lt;P&gt;Image example following &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 11:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428808#M511956</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-05T11:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: selection new row in different table</title>
      <link>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428809#M511957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi federico,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the following script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;TABLE1&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;name2&lt;/P&gt;&lt;P&gt;name3&lt;/P&gt;&lt;P&gt;name4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table2:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;TABLE2&lt;/P&gt;&lt;P&gt;name1&lt;/P&gt;&lt;P&gt;name2&lt;/P&gt;&lt;P&gt;name666&lt;/P&gt;&lt;P&gt;name676&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (table2)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;TABLE1 as TABLE2,&lt;/P&gt;&lt;P&gt;1 as [Flag TABLE1]&lt;/P&gt;&lt;P&gt;Resident table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(table1)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;TABLE2,&lt;/P&gt;&lt;P&gt;[Flag TABLE1]&lt;/P&gt;&lt;P&gt;Resident table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;TABLE1,&lt;/P&gt;&lt;P&gt;TABLE2,&lt;/P&gt;&lt;P&gt;[Flag TABLE1],&lt;/P&gt;&lt;P&gt;if(not IsNull(TABLE2) and IsNull([Flag TABLE1]),1,0) as [Flag New Record]&lt;/P&gt;&lt;P&gt;Resident table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll get the new records you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached the QVW I used and result on the below picture.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Sample.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/185758_Sample.png" style="height: 349px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 12:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428809#M511957</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2017-12-05T12:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: selection new row in different table</title>
      <link>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428810#M511958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot join two table, i should be work by dimension and expression formula. &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 14:45:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/selection-new-row-in-different-table/m-p/1428810#M511958</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-05T14:45:48Z</dc:date>
    </item>
  </channel>
</rss>

