<?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: Create new field in loadscript based on values other field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321899#M28547</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a Robust version for Joining the tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Person,Adres_Type,Adres&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;1,GSM,123456&lt;/P&gt;&lt;P&gt;1,TEL,456789&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2,GSM,987654&lt;/P&gt;&lt;P&gt;2,TEL,654321&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FACT:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT Person &lt;/P&gt;&lt;P&gt;RESIDENT Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For i = 1 to 3&lt;/P&gt;&lt;P&gt;vFilter= Pick($(i),'EML','GSM','TEL');&lt;/P&gt;&lt;P&gt;JOIN(FACT)&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Adres as '$(vFilter)'&lt;/P&gt;&lt;P&gt;RESIDENT Temp&lt;/P&gt;&lt;P&gt;Where Adres_Type = '$(vFilter)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next i;&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>Wed, 26 Apr 2017 11:36:58 GMT</pubDate>
    <dc:creator>vinieme12</dc:creator>
    <dc:date>2017-04-26T11:36:58Z</dc:date>
    <item>
      <title>Create new field in loadscript based on values other field</title>
      <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321896#M28544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a &lt;SPAN style="color: #ff0000;"&gt;Table_Source&lt;/SPAN&gt; with information per row that I want to show per type in Qlik (see &lt;SPAN style="color: #339966;"&gt;Table_Visual&lt;/SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I did now was in the loadscipt to create a separate table per information type with the where clause (so one table for EML, one for GSM and one for TEL). Then in QLik I could create a table with the newly created fields.&lt;/P&gt;&lt;P&gt;If I created the fields in the same &lt;SPAN style="color: #ff0000; font-size: 13.3333px;"&gt;Table_Source&lt;/SPAN&gt;, the the result was not what I wanted &lt;SPAN style="color: #ff9900;"&gt;Table_WrongVisual&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way that I can do this in Qlik itself without modifiying the script (DataPivot?) ? Is there a more efficient way in the load script than creating a table field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Table_Source&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #ff0000;"&gt; &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="236"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" width="64"&gt;Person&lt;/TD&gt;&lt;TD width="80"&gt;Adres_Type&lt;/TD&gt;&lt;TD width="92"&gt;Adres&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20"&gt;1&lt;/TD&gt;&lt;TD&gt;EML&lt;/TD&gt;&lt;TD class="xl65"&gt;&lt;A href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20"&gt;1&lt;/TD&gt;&lt;TD&gt;GSM&lt;/TD&gt;&lt;TD align="right"&gt;123456&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20"&gt;1&lt;/TD&gt;&lt;TD&gt;TEL&lt;/TD&gt;&lt;TD align="right"&gt;456789&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20"&gt;2&lt;/TD&gt;&lt;TD&gt;EML&lt;/TD&gt;&lt;TD class="xl65"&gt;&lt;A href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20"&gt;2&lt;/TD&gt;&lt;TD&gt;GSM&lt;/TD&gt;&lt;TD align="right"&gt;987654&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20"&gt;2&lt;/TD&gt;&lt;TD&gt;TEL&lt;/TD&gt;&lt;TD align="right"&gt;654321&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;Table_Visual&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 287px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="64"&gt;Person&lt;/TD&gt;&lt;TD width="75"&gt;Adres_EML&lt;/TD&gt;&lt;TD width="78"&gt;Adres_GSM&lt;/TD&gt;&lt;TD width="70"&gt;Adres_TEL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl66"&gt;&lt;A href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;TD align="right"&gt;123456&lt;/TD&gt;&lt;TD align="right"&gt;456789&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;2&lt;/TD&gt;&lt;TD class="xl66"&gt;&lt;A href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;TD align="right"&gt;987654&lt;/TD&gt;&lt;TD align="right"&gt;654321&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff9900;"&gt;Table_WrongVisual&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; color: #ff9900;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 287px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="64"&gt;Person&lt;/TD&gt;&lt;TD width="75"&gt;Adres_EML&lt;/TD&gt;&lt;TD width="78"&gt;Adres_GSM&lt;/TD&gt;&lt;TD width="70"&gt;Adres_TEL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl66"&gt;&lt;A href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;1&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD align="right"&gt;123456&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;1&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD align="right"&gt;456789&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;2&lt;/TD&gt;&lt;TD class="xl66"&gt;&lt;A href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;2&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD align="right"&gt;987654&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20"&gt;2&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;TD align="right"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; text-align: left;"&gt;654321&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2017 10:41:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321896#M28544</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-26T10:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create new field in loadscript based on values other field</title>
      <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321897#M28545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonah,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Adres_Type,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Adres&lt;/P&gt;&lt;P&gt;FROM...&lt;/P&gt;&lt;P&gt;WHERE Adres_Type = 'EML'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN (Table)&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Adres AS Adres_GSM&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;WHERE Adres_Type = 'GSM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN (Table)&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Adres AS Adres_TEL&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;WHERE Adres_Type = 'TEL'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2017 10:48:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321897#M28545</guid>
      <dc:creator>daveamz</dc:creator>
      <dc:date>2017-04-26T10:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create new field in loadscript based on values other field</title>
      <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321898#M28546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEMP:&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;MaxString(Adres_EML) as Adres_EML,&lt;/P&gt;&lt;P&gt;MaxString(Adres_GSM) as Adres_GSM,&lt;/P&gt;&lt;P&gt;MaxString(Adres_TEL) as Adres_TEL&lt;/P&gt;&lt;P&gt;Group by Person;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Person,&lt;/P&gt;&lt;P&gt;if(Adres_Type='EML',Adres) as Adres_EML,&lt;/P&gt;&lt;P&gt;if(Adres_Type='GSM',Adres) as Adres_GSM,&lt;/P&gt;&lt;P&gt;if(Adres_Type='TEL',Adres) as Adres_TEL&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Person,Adres_Type,Adres&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;1,GSM,123456&lt;/P&gt;&lt;P&gt;1,TEL,456789&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2,GSM,987654&lt;/P&gt;&lt;P&gt;2,TEL,654321&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2017 11:30:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321898#M28546</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-04-26T11:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create new field in loadscript based on values other field</title>
      <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321899#M28547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a Robust version for Joining the tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Person,Adres_Type,Adres&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;1,GSM,123456&lt;/P&gt;&lt;P&gt;1,TEL,456789&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2,GSM,987654&lt;/P&gt;&lt;P&gt;2,TEL,654321&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FACT:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT Person &lt;/P&gt;&lt;P&gt;RESIDENT Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For i = 1 to 3&lt;/P&gt;&lt;P&gt;vFilter= Pick($(i),'EML','GSM','TEL');&lt;/P&gt;&lt;P&gt;JOIN(FACT)&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Adres as '$(vFilter)'&lt;/P&gt;&lt;P&gt;RESIDENT Temp&lt;/P&gt;&lt;P&gt;Where Adres_Type = '$(vFilter)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next i;&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>Wed, 26 Apr 2017 11:36:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321899#M28547</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-04-26T11:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create new field in loadscript based on values other field</title>
      <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321900#M28548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this too and it worked great! Thanks alot (as a Qlik newcommer I still have alot to learn &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could i create a second/third/... EML field if my source data is the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;Table_Source&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="border: 0px; font-size: 13px; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Lucida Grande&amp;quot;, sans-serif; color: rgb(61, 61, 61); width: 236px;"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="64"&gt;Person&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="80"&gt;Adres_Type&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="92"&gt;Adres&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;EML&lt;/TD&gt;&lt;TD class="xl65" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;A class="jive-link-email-small" href="mailto:1@gmail.com" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;1@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;EML&lt;/TD&gt;&lt;TD&gt;&lt;A class="jive-link-email-small" href="mailto:1@hotmail.com"&gt;1@hotmail.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;EML&lt;/TD&gt;&lt;TD&gt;&lt;A class="jive-link-email-small" href="mailto:1@yahoo.com"&gt;1@yahoo.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;GSM&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;P&gt;12345&lt;SPAN style="font-family: inherit; font-style: inherit; text-align: left;"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;TEL&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;456789&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;EML&lt;/TD&gt;&lt;TD class="xl65" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;A class="jive-link-email-small" href="mailto:2@gmail.com" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;2@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;GSM&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;987654&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl64" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;TEL&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;654321&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&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-family: inherit; color: #339966;"&gt;Table_Visual&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="border: 0px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl65" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="64"&gt;Person&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="75"&gt;Adres_EML&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="75"&gt;Adres_EML1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="75"&gt;Adres_EML2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="78"&gt;Adres_GSM&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;" width="70"&gt;Adres_TEL&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl65" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;A class="jive-link-email-small" href="mailto:1@gmail.com" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;1@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;A class="jive-link-email-small" href="mailto:1@hotmail.com"&gt;1@hotmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;A class="jive-link-email-small" href="mailto:1@yahoo.com"&gt;1@yahoo.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;123456&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;456789&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD class="xl65" height="20" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;2&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;A class="jive-link-email-small" href="mailto:2@gmail.com" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;2@gmail.com&lt;/A&gt;&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;987654&lt;/TD&gt;&lt;TD align="right" style="padding-right: 4px; padding-left: 4px; border: 0px solid black; font-style: inherit; font-family: inherit;"&gt;654321&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2017 14:53:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321900#M28548</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-26T14:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create new field in loadscript based on values other field</title>
      <link>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321901#M28549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Person,Adres_Type,Adres&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:1@gmail.com"&gt;1@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:1_2@gmail.com"&gt;1_2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:1_3@gmail.com"&gt;1_3@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;1,GSM,123456&lt;/P&gt;&lt;P&gt;1,GSM,1_123456&lt;/P&gt;&lt;P&gt;1,TEL,456789&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:2@gmail.com"&gt;2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2,EML,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:2_1@gmail.com"&gt;2_1@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2,GSM,987654&lt;/P&gt;&lt;P&gt;2,TEL,654321&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FACT:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT Person&lt;/P&gt;&lt;P&gt;RESIDENT Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For i = 1 to 3&lt;/P&gt;&lt;P&gt;vFilter= Pick($(i),'EML','GSM','TEL');&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;JOIN(FACT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Person&lt;/P&gt;&lt;P&gt;,Subfield($(vFilter),'; ',1) as '$(vFilter)_1'&lt;/P&gt;&lt;P&gt;,Subfield($(vFilter),'; ',2) as '$(vFilter)_2'&lt;/P&gt;&lt;P&gt;,Subfield($(vFilter),'; ',3) as '$(vFilter)_3'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Person,&lt;/P&gt;&lt;P&gt;&amp;nbsp; concat(DisTINCT Adres,'; ') as '$(vFilter)'&lt;/P&gt;&lt;P&gt;RESIDENT Temp&lt;/P&gt;&lt;P&gt;Where Adres_Type = '$(vFilter)'&lt;/P&gt;&lt;P&gt;Group by Person;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next i;&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>Wed, 26 Apr 2017 19:28:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Create-new-field-in-loadscript-based-on-values-other-field/m-p/1321901#M28549</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-04-26T19:28:31Z</dc:date>
    </item>
  </channel>
</rss>

