<?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: Want to update record from another table where null in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820193#M289136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;left join the columns you need from the second table onto the first&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * from Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (Table1)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;ProductNumber, //the field to join on - add more if needed&lt;/P&gt;&lt;P&gt;FiscalYear as FiscalYearTable2,&lt;/P&gt;&lt;P&gt;Origin as OriginTable2&lt;/P&gt;&lt;P&gt;from Table2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then use if statements to fill the null values on the full table in a new load :&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;....,&lt;/P&gt;&lt;P&gt;if isnull(FiscalYear), FiscalYearTable2, FiscalYear) as FiscalYear &lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then drop the fields you do not need any longer&lt;/P&gt;&lt;P&gt;drop FiscalYearTable2 &lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not working code, it is for illustration purposes only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jan 2015 12:30:11 GMT</pubDate>
    <dc:creator>giakoum</dc:creator>
    <dc:date>2015-01-20T12:30:11Z</dc:date>
    <item>
      <title>Want to update record from another table where null</title>
      <link>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820192#M289135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two tables. In first table some fields are blank.In second table those fields are filled.&lt;/P&gt;&lt;P&gt;I want first table in which if any field is blanks then these values should fill in second table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attachind data &amp;amp; result also.&lt;/P&gt;&lt;P&gt;Table 1:&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 559px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD height="19" style="height: 14.25pt; width: 105pt;" width="140"&gt;ProductNumber&lt;/TD&gt;&lt;TD style="width: 86pt;" width="114"&gt;ProductName&lt;/TD&gt;&lt;TD style="width: 105pt;" width="140"&gt;FiscalYear&lt;/TD&gt;&lt;TD style="width: 70pt;" width="93"&gt;Origin&lt;/TD&gt;&lt;TD style="width: 54pt;" width="72"&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1001&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD align="right"&gt;2000&lt;/TD&gt;&lt;TD&gt;IND&lt;/TD&gt;&lt;TD align="right"&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1002&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD align="right"&gt;2001&lt;/TD&gt;&lt;TD&gt;AUS&lt;/TD&gt;&lt;TD align="right"&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1003&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD align="right"&gt;2002&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD align="right"&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1004&lt;/TD&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD align="right"&gt;2003&lt;/TD&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD align="right"&gt;7000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1005&lt;/TD&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD align="right"&gt;8000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1006&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD align="right"&gt;9000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1007&lt;/TD&gt;&lt;TD&gt;G&lt;/TD&gt;&lt;TD align="right"&gt;2006&lt;/TD&gt;&lt;TD&gt;BRA&lt;/TD&gt;&lt;TD align="right"&gt;10000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1008&lt;/TD&gt;&lt;TD&gt;H&lt;/TD&gt;&lt;TD align="right"&gt;2007&lt;/TD&gt;&lt;TD&gt;CHI&lt;/TD&gt;&lt;TD align="right"&gt;11000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1009&lt;/TD&gt;&lt;TD&gt;I&lt;/TD&gt;&lt;TD align="right"&gt;2008&lt;/TD&gt;&lt;TD&gt;RUSS&lt;/TD&gt;&lt;TD align="right"&gt;12000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1010&lt;/TD&gt;&lt;TD&gt;J&lt;/TD&gt;&lt;TD align="right"&gt;2009&lt;/TD&gt;&lt;TD&gt;JAP&lt;/TD&gt;&lt;TD align="right"&gt;13000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 377pt;" width="502"&gt;&lt;TBODY&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD height="19" style="height: 14.25pt; width: 54pt;" width="72"&gt;ProductNumber&lt;/TD&gt;&lt;TD style="width: 73pt;" width="97"&gt;ProductName&lt;/TD&gt;&lt;TD style="width: 81pt;" width="108"&gt;FiscalYear&lt;/TD&gt;&lt;TD style="width: 115pt;" width="153"&gt;Origin&lt;/TD&gt;&lt;TD style="width: 54pt;" width="72"&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1001&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD align="right"&gt;2000&lt;/TD&gt;&lt;TD&gt;IND&lt;/TD&gt;&lt;TD align="right"&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1002&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD align="right"&gt;2001&lt;/TD&gt;&lt;TD&gt;AUS&lt;/TD&gt;&lt;TD align="right"&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1003&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD align="right"&gt;2002&lt;/TD&gt;&lt;TD&gt;FRA&lt;/TD&gt;&lt;TD align="right"&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1004&lt;/TD&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD align="right"&gt;2003&lt;/TD&gt;&lt;TD&gt;USA&lt;/TD&gt;&lt;TD align="right"&gt;7000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1005&lt;/TD&gt;&lt;TD&gt;E&lt;/TD&gt;&lt;TD align="right"&gt;2004&lt;/TD&gt;&lt;TD&gt;NUZ&lt;/TD&gt;&lt;TD align="right"&gt;8000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1006&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD align="right"&gt;2005&lt;/TD&gt;&lt;TD&gt;JER&lt;/TD&gt;&lt;TD align="right"&gt;9000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1007&lt;/TD&gt;&lt;TD&gt;G&lt;/TD&gt;&lt;TD align="right"&gt;2006&lt;/TD&gt;&lt;TD&gt;BRA&lt;/TD&gt;&lt;TD align="right"&gt;10000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1008&lt;/TD&gt;&lt;TD&gt;H&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD align="right"&gt;11000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt;"&gt;1009&lt;/TD&gt;&lt;TD&gt;I&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD align="right"&gt;12000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" jive-data-cell="{&amp;quot;color&amp;quot;:&amp;quot;#575757&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;-webkit-right&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;NaN&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;transparent&amp;quot;,&amp;quot;fontFamily&amp;quot;:&amp;quot;arial,helvetica,sans-serif&amp;quot;,&amp;quot;verticalAlign&amp;quot;:&amp;quot;baseline&amp;quot;}" jive-data-header="{&amp;quot;color&amp;quot;:&amp;quot;#FFFFFF&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;#6690BC&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;center&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;}" style="width: 502px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD style="width: 54pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;ProductNumber&lt;/TD&gt;&lt;TD style="width: 73pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;ProductName&lt;/TD&gt;&lt;TD style="width: 81pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;FiscalYear&lt;/TD&gt;&lt;TD style="width: 115pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;Origin&lt;/TD&gt;&lt;TD style="width: 54pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1001&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;A&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2000&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;IND&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;4000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1002&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;B&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2001&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;AUS&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;5000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1003&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;C&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2002&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;FRA&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;6000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1004&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;D&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2003&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;USA&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;7000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1005&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;E&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2004&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;NUZ&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;8000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1006&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;F&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2005&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;JER&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;9000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1007&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;G&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;2006&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;BRA&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;10000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1008&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;H&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2007&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;CHI&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;11000&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 14.25pt;"&gt;&lt;TD align="right" height="19" style="height: 14.25pt; color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;1009&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;I&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2008&lt;/TD&gt;&lt;TD style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;RUSS&lt;/TD&gt;&lt;TD align="right" style="color: #575757; text-align: -webkit-right; font-family: arial, helvetica, sans-serif; vertical-align: baseline; background-color: transparent;"&gt;&lt;P&gt;12000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 12:15:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820192#M289135</guid>
      <dc:creator>rishikeshtiwari</dc:creator>
      <dc:date>2015-01-20T12:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Want to update record from another table where null</title>
      <link>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820193#M289136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;left join the columns you need from the second table onto the first&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * from Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (Table1)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;ProductNumber, //the field to join on - add more if needed&lt;/P&gt;&lt;P&gt;FiscalYear as FiscalYearTable2,&lt;/P&gt;&lt;P&gt;Origin as OriginTable2&lt;/P&gt;&lt;P&gt;from Table2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then use if statements to fill the null values on the full table in a new load :&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;....,&lt;/P&gt;&lt;P&gt;if isnull(FiscalYear), FiscalYearTable2, FiscalYear) as FiscalYear &lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then drop the fields you do not need any longer&lt;/P&gt;&lt;P&gt;drop FiscalYearTable2 &lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not working code, it is for illustration purposes only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 12:30:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820193#M289136</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2015-01-20T12:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Want to update record from another table where null</title>
      <link>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820194#M289137</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;Use outer join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final_table&lt;/P&gt;&lt;P&gt;load * from table1;&lt;/P&gt;&lt;P&gt;outer join&lt;/P&gt;&lt;P&gt;load * from table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 12:31:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820194#M289137</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-01-20T12:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Want to update record from another table where null</title>
      <link>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820195#M289138</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;Try to join this tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpTable1:&lt;/P&gt;&lt;P&gt;Load ProductNumber,&amp;nbsp;&amp;nbsp;&amp;nbsp; ProductName,&amp;nbsp;&amp;nbsp;&amp;nbsp; FiscalYear,&amp;nbsp;&amp;nbsp;&amp;nbsp; Origin,&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales From Source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpTable2:&lt;/P&gt;&lt;P&gt;Load ProductNumber,&amp;nbsp;&amp;nbsp;&amp;nbsp; ProductName,&amp;nbsp;&amp;nbsp;&amp;nbsp; FiscalYear,&amp;nbsp;&amp;nbsp;&amp;nbsp; Origin,&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales From Source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;FinalTab:&lt;/P&gt;&lt;P&gt;LOAD * Resident tmpTable1 Where Len(FiscalYear) &amp;gt; 0 and Len(Origin) &amp;gt; 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table tmpTable1;&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>Tue, 20 Jan 2015 12:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Want-to-update-record-from-another-table-where-null/m-p/820195#M289138</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2015-01-20T12:33:53Z</dc:date>
    </item>
  </channel>
</rss>

