<?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: creating a new field in the script by using several fields from different data sources in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436471#M431491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Colin for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried another solution but I m not sure if its correct. So far I tested it and it has loaded the script correctly and the calculations are fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD fi_rate_reg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contract_term_reg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_interest,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PV(fi_interest/12, contract_term_reg, fi_rate_reg, 0, 1)*-1 as fi_pv_perc_reg&lt;/P&gt;&lt;P&gt;Resident Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Sep 2017 15:19:49 GMT</pubDate>
    <dc:creator>thanhphongle</dc:creator>
    <dc:date>2017-09-28T15:19:49Z</dc:date>
    <item>
      <title>creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436465#M431485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a new field called fi_pv_reg in the script by calculating several fields from different data sources&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is an exmaple of my table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAP_INTEREST:&lt;/P&gt;&lt;P&gt;MAPPING LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_interest_period,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_interest&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;main.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is finance);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;PV(fi_interest/12, contract_term_reg, fi_rate_reg, 0, 1)*-1 as fi_pv_reg;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD main_unique_id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_model,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contract_term_reg, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_rate_reg&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;main.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is main)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV returns me an error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;Field can not be found - &amp;lt;fi_interest&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;LOAD main_unique_id, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customer,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_model, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contract_term_reg, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_rate_reg, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;lease.one_import.xlsx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;(ooxml, embedded labels, table is main)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 14:48:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436465#M431485</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2017-09-28T14:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436466#M431486</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;You should use&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;PV(fi_interest/12, contract_term_reg, fi_rate_reg, 0, 1)*-1 as fi_pv_reg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident MAP_INTEREST; (I see that other field is from different table, so my apology)&lt;/P&gt;&lt;P&gt;Would you be able to share sample data/script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 14:52:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436466#M431486</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-28T14:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436467#M431487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have created a mapping table, but do not have an applymap statement to convert a date or period to a fi_interest value using the mapping table in your script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You need to add a line something like the&amp;nbsp; example below&amp;nbsp; but using the correct period or date field&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;Directory;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; main_unique_id,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customer&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_id,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_model,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contract_term_reg,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_rate_reg,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;applymap('&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;MAP_INTEREST', YOUR-PERIOD-DATA-FIELD, 0) AS &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;fi_interest&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;main.xlsx&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is main)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:01:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436467#M431487</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2017-09-28T15:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436468#M431488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually I just posted the my whole script. If you mean sharing my qv-file, unfortunetly I can't share it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436468#M431488</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2017-09-28T15:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436469#M431489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution will not work as the MAP_INTEREST table does not contain the fields &lt;STRONG&gt;contract_term_reg&lt;/STRONG&gt; and &lt;STRONG&gt;fi_rate_reg&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression requires fi_interest, contract_term_reg and fi_rate_reg to exist in the same table.&lt;/P&gt;&lt;P&gt;See my reply that includes the applymap statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:05:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436469#M431489</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2017-09-28T15:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436470#M431490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Colin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah, I realized it later that it was coming from a different table and I was also wondering about mapping load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for pointing it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:08:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436470#M431490</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-28T15:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436471#M431491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Colin for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried another solution but I m not sure if its correct. So far I tested it and it has loaded the script correctly and the calculations are fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD fi_rate_reg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contract_term_reg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_interest,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PV(fi_interest/12, contract_term_reg, fi_rate_reg, 0, 1)*-1 as fi_pv_perc_reg&lt;/P&gt;&lt;P&gt;Resident Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436471#M431491</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2017-09-28T15:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436472#M431492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the fi_interest field exist on the main sheet of main.xlsx&amp;nbsp; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, you do not need the resident load, just add the expression to your Data load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Data:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD main_unique_id,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; customer&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_id,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; asset_model,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contract_term_reg,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_rate_reg,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fi_interest,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PV(fi_interest/12, contract_term_reg, fi_rate_reg, 0, 1)*-1 as fi_pv_perc_reg&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;main.xlsx&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is main)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436472#M431492</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2017-09-28T15:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436473#M431493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it doesnt exist on the main sheet of main.xlsx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 15:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436473#M431493</guid>
      <dc:creator>thanhphongle</dc:creator>
      <dc:date>2017-09-28T15:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: creating a new field in the script by using several fields from different data sources</title>
      <link>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436474#M431494</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;If you have it working. Can you please close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 16:54:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/creating-a-new-field-in-the-script-by-using-several-fields-from/m-p/1436474#M431494</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2017-09-28T16:54:54Z</dc:date>
    </item>
  </channel>
</rss>

