<?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: New column in load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101967#M365435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to share the script you are using? We might be able to suggest you the best alternative once we see what exactly do you have &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jun 2016 16:01:38 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-06-13T16:01:38Z</dc:date>
    <item>
      <title>New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101958#M365426</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 a main table, and then want to derive a new field based on a column. The main table comes from different spreadsheets and the result is something as below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 161px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="72"&gt;step&lt;/TD&gt;&lt;TD width="89"&gt;DataColumn&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;A-1&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-2&lt;/TD&gt;&lt;TD&gt;data2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-3&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-4&lt;/TD&gt;&lt;TD&gt;data3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;C-5&lt;/TD&gt;&lt;TD&gt;data4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;A-1&lt;/TD&gt;&lt;TD&gt;data4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-2&lt;/TD&gt;&lt;TD&gt;data4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-3&lt;/TD&gt;&lt;TD&gt;data3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-4&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;C-5&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;A-1&lt;/TD&gt;&lt;TD&gt;data2&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;Now I want to add another column after, based on DataColumn, if DataColumn is data1 or data2, then new column should be Data1or2, &lt;SPAN style="font-size: 13.3333px;"&gt;DataColumn is data3 or data4 then new column should be Data3or4. I should use a preceding load and create a Temp Table and then join it to my main table - should be so easy but can;t get it to work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 161px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="72"&gt;step&lt;/TD&gt;&lt;TD width="89"&gt;DataColumn&lt;/TD&gt;&lt;TD width="89"&gt;New Column&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;A-1&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data1or2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-2&lt;/TD&gt;&lt;TD&gt;data2&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data1or2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-3&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data1or2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-4&lt;/TD&gt;&lt;TD&gt;data3&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data3or4&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;C-5&lt;/TD&gt;&lt;TD&gt;data4&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data3or4&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;A-1&lt;/TD&gt;&lt;TD&gt;data4&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data3or4&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-2&lt;/TD&gt;&lt;TD&gt;data4&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data3or4&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-3&lt;/TD&gt;&lt;TD&gt;data3&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data3or4&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;B-4&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data1or2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;C-5&lt;/TD&gt;&lt;TD&gt;data1&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data1or2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;A-1&lt;/TD&gt;&lt;TD&gt;data2&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Data1or2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101958#M365426</guid>
      <dc:creator />
      <dc:date>2016-06-13T15:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101959#M365427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This did not work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD step,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataColumn,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt; If(Match(&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 13.3333px;"&gt;DataColumn, 'data1', 'data2'), 'Data1or2', 'Data3or4') as [New Column]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;FROM ....&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101959#M365427</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-13T15:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101960#M365428</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;Hope the attached qvw helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishnapriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:15:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101960#M365428</guid>
      <dc:creator>krishnacbe</dc:creator>
      <dc:date>2016-06-13T15:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101961#M365429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! This works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:33:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101961#M365429</guid>
      <dc:creator />
      <dc:date>2016-06-13T15:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101962#M365430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be as attached:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load&amp;nbsp; &lt;/P&gt;&lt;P&gt;Step,&lt;/P&gt;&lt;P&gt;DataColumn,&lt;/P&gt;&lt;P&gt;If(DataColumn='data1' OR DataColumn='data2','Data1or2','Data3or4') as NewColumn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;Step, DataColumn,&lt;/P&gt;&lt;P&gt;A-1, data1&lt;/P&gt;&lt;P&gt;B-2, data2&lt;/P&gt;&lt;P&gt;B-3, data1&lt;/P&gt;&lt;P&gt;B-4, data3&lt;/P&gt;&lt;P&gt;C-5, data4&lt;/P&gt;&lt;P&gt;A-1, data4&lt;/P&gt;&lt;P&gt;B-2, data4&lt;/P&gt;&lt;P&gt;B-3, data3&lt;/P&gt;&lt;P&gt;B-4, data1&lt;/P&gt;&lt;P&gt;C-5, data1&lt;/P&gt;&lt;P&gt;A-1, data2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:35:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101962#M365430</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-06-13T15:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101963#M365431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now it gives me synthetic keys, is it OK?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:48:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101963#M365431</guid>
      <dc:creator />
      <dc:date>2016-06-13T15:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101964#M365432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should not give you synthetic keys. Are you creating this in a resident load? I would suggest you to create it in the first load when you are loading it from your database&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101964#M365432</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-13T15:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101965#M365433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I have to use Resident because my main table is coming from different sources...Can you advise please on how I can use resident load and not get synthetic keys? or maybe use a preceding load?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 15:59:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101965#M365433</guid>
      <dc:creator />
      <dc:date>2016-06-13T15:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101966#M365434</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;Please check the sample I have attached. It doesn't have synthetic key.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101966#M365434</guid>
      <dc:creator>krishnacbe</dc:creator>
      <dc:date>2016-06-13T16:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101967#M365435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to share the script you are using? We might be able to suggest you the best alternative once we see what exactly do you have &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:01:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101967#M365435</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-13T16:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101968#M365436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not able to share the whole script &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;/P&gt;&lt;P&gt;but this is basically what I'm doing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MainTable:&lt;/P&gt;&lt;P&gt;Crosstable(A,B)&lt;/P&gt;&lt;P&gt;Load....From&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Crosstable(A,B)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load...From&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Crosstable(A,B)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load...From&lt;/P&gt;&lt;P&gt;(for different data sources) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I have my MainTable built, basically same as I showed you.&lt;/P&gt;&lt;P&gt;Then I've added the following, which gives me synthetic key &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD step,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataColumn,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;If(Match(&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #ff0000;"&gt;DataColumn, 'data1', 'data2'), 'Data1or2', 'Data3or4') as [New Column]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;RESIDENT &lt;SPAN style="font-size: 13.3333px;"&gt;MainTable;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101968#M365436</guid>
      <dc:creator />
      <dc:date>2016-06-13T16:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101969#M365437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give this a shot:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;MainTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Crosstable(A,B)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load....From&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: inherit;"&gt;Crosstable(A,B)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load...From&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: inherit;"&gt;Crosstable(A,B)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load...From&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;(for different data sources)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;FINALMainTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD &lt;SPAN style="color: #ff0000;"&gt;*,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-style: inherit; font-family: inherit; color: #3d3d3d;"&gt; If(Match(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;DataColumn, 'data1', 'data2'), 'Data1or2', 'Data3or4') as [New Column]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: inherit;"&gt;RESIDENT &lt;SPAN style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;MainTable;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style=": ; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&lt;STRONG style="font-size: 13.3333px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG style="color: #ff0000;"&gt;DROP Table MainTable;&lt;/STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:11:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101969#M365437</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-13T16:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101970#M365438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great! Synthetic keys are gone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:18:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101970#M365438</guid>
      <dc:creator />
      <dc:date>2016-06-13T16:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101971#M365439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:19:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101971#M365439</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-13T16:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101972#M365440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:22:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101972#M365440</guid>
      <dc:creator />
      <dc:date>2016-06-13T16:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: New column in load script</title>
      <link>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101973#M365441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;thanks!!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/New-column-in-load-script/m-p/1101973#M365441</guid>
      <dc:creator />
      <dc:date>2016-06-13T16:22:26Z</dc:date>
    </item>
  </channel>
</rss>

