<?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 Multiply two fields from different tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142260#M716640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried using the ApplyMap recommendation that you posted above. I am clearly not translating your code correctly. I want to create two new fields (without creating a new table) to add to Table Two:&lt;/P&gt;&lt;P&gt;1) [Issue Age] x [Initial Face Amounts]&lt;/P&gt;&lt;P&gt;2) [Issue Age] x [Death Benefits]&lt;/P&gt;&lt;P&gt;Here is what I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Policy Number],&lt;/P&gt;&lt;P&gt;Mode,&lt;/P&gt;&lt;P&gt;[Death Benefit Option]&lt;/P&gt;&lt;P&gt;[Issue Age],&lt;/P&gt;&lt;P&gt;[Account Value],&lt;/P&gt;&lt;P&gt;[Loan Balance],&lt;/P&gt;&lt;P&gt;[Count]&lt;/P&gt;&lt;P&gt;FROM inv11006.qvd (qvd);&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Table_2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Policy Number],&lt;/P&gt;&lt;P&gt;[Death Benefits],&lt;/P&gt;&lt;P&gt;[Initial Face Amounts],&lt;/P&gt;&lt;P&gt;[Coverage Count]&lt;/P&gt;&lt;P&gt;FROM inv21006.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;AgeFaceBenefitsMap:&lt;/P&gt;&lt;P&gt;mapping load&lt;/P&gt;&lt;P&gt;[Policy Number],&lt;BR /&gt;[Issue Age]&lt;/P&gt;&lt;P&gt;resident Table_1;&lt;BR /&gt;load&lt;/P&gt;&lt;P&gt;[Initial Face Amounts],&lt;/P&gt;&lt;P&gt;[Death Benefits],&lt;/P&gt;&lt;P&gt;[Initial Face Amounts] * ApplyMap('AgeFaceBenefitsMap', [Issue Age], 0) as AgeFace,&lt;/P&gt;&lt;P&gt;[Death Benefits] * ApplyMap('AgeFaceBenefitsMap', [Issue Age], 0) as AgeDeathBen&lt;BR /&gt;&lt;BR /&gt;resident Table_2;&lt;/P&gt;&lt;P&gt;Your response is greatly appreciated!&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ellen&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Oct 2010 20:01:21 GMT</pubDate>
    <dc:creator>bullish35</dc:creator>
    <dc:date>2010-10-08T20:01:21Z</dc:date>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142241#M716620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!! I need some help with multiplying data from two tables into one new field having one field in common between both tables.&lt;/P&gt;&lt;P&gt;I have Table1 with fields: [Machine] and [Speed] and Table2 with fields: [Machine] and [ProdHrs], I need to have a new field (&lt;STRONG&gt;in Table2&lt;/STRONG&gt;) that has the product of [Speed] and [ProdHrs] for each record of [Machine].&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 02:51:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142241#M716620</guid>
      <dc:creator />
      <dc:date>2009-04-23T02:51:48Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142242#M716621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your script:&lt;/P&gt;&lt;P&gt;SQL SELECT Table1.Machine, Speed, ProdHrs, Speed * ProdHrs As TotalTime&lt;/P&gt;&lt;P&gt;FROM Table1, Table2&lt;/P&gt;&lt;P&gt;WHERE Table1.Machine = Table2.Machine;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 03:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142242#M716621</guid>
      <dc:creator />
      <dc:date>2009-04-23T03:10:46Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142243#M716623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You Could also try something like this although if all you need is to multiply NMiller's suggestion seems easiest:&lt;/P&gt;&lt;P&gt;TableTemp:&lt;BR /&gt;&lt;BR /&gt;Load&lt;BR /&gt;Machine,&lt;BR /&gt;Speed;&lt;BR /&gt;&lt;BR /&gt;SQL SELECT machine, speed&lt;BR /&gt;from table1;&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (TableTemp)&lt;BR /&gt;SQL SELECT machine, ProdHours&lt;BR /&gt;from table2;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NewTable:&lt;BR /&gt;&lt;BR /&gt;Load&lt;BR /&gt;machine,&lt;BR /&gt;speed,&lt;BR /&gt;ProdHours,&lt;BR /&gt;speed*ProdHours as NewField&lt;BR /&gt;&lt;BR /&gt;Resident TableTemp;&lt;BR /&gt;&lt;BR /&gt;Drop Table TableTemp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 03:31:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142243#M716623</guid>
      <dc:creator />
      <dc:date>2009-04-23T03:31:28Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142244#M716624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't want to join 2 tables together, you can use mapping to grab one value out of another table:&lt;/P&gt;&lt;P&gt;SpeedMap:&lt;/P&gt;&lt;P&gt;mapping load&lt;/P&gt;&lt;P&gt;Machine,&lt;/P&gt;&lt;P&gt;Speed&lt;/P&gt;&lt;P&gt;resident Table1&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Table3:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;Machine,&lt;/P&gt;&lt;P&gt;ProdHrs,&lt;/P&gt;&lt;P&gt;ProdHrs * ApplyMap('SpeedMap', Machine, 0) as MyNewFieldd&lt;/P&gt;&lt;P&gt;resident Table2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 03:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142244#M716624</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-04-23T03:37:19Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142245#M716625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi use&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;Machine,&lt;/P&gt;&lt;P&gt;Speed,&lt;/P&gt;&lt;P&gt;ProdHours,&lt;/P&gt;&lt;P&gt;(speed * ProdHours) as Mul&lt;/P&gt;&lt;P&gt;Resident Tablename;&lt;/P&gt;&lt;P&gt;drop table Tablename;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 04:05:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142245#M716625</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2009-04-23T04:05:51Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142246#M716626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oleg,&lt;/P&gt;&lt;P&gt;This method of mapping is a great idea and I can see many uses for it but I am wondering how the ApplyMap() knows to use speed.&lt;/P&gt;&lt;P&gt;Are you only able to map one field at a time?&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 04:37:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142246#M716626</guid>
      <dc:creator />
      <dc:date>2009-04-23T04:37:02Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142247#M716627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marc,&lt;/P&gt;&lt;P&gt;you specify what field to use in the mapping load. Yes, mapping load only allows 2 fields - the "from" and the "to". Indeed, mapping has many uses, and I found it much more friendly than a left join, especially if you only need a single field.&lt;/P&gt;&lt;P&gt;good luck!&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 04:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142247#M716627</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-04-23T04:56:35Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142248#M716628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg,&lt;/P&gt;&lt;P&gt;I use lookup( ) instead.&lt;/P&gt;&lt;P&gt;This is more flexible because you need no Map and you can retrieve different fields.&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 17:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142248#M716628</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2009-04-23T17:43:13Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142249#M716629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ralf,&lt;/P&gt;&lt;P&gt;I tried using lookup() long time ago, and it was causing some trouble, so I stayed away since then. Perhaps I should give it another try. Do you have any experience regarding performance - if it's applied to large data load, what's the "price" for convenience ?&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 19:17:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142249#M716629</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-04-23T19:17:56Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142250#M716630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oleg,&lt;/P&gt;&lt;P&gt;lookup could be a bit slower but remember, it's all in memory! I wouldn't expect much difference.&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 20:32:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142250#M716630</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2009-04-23T20:32:02Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142251#M716631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ralf,&lt;/P&gt;&lt;P&gt;I got curious and tested it. You are right, both functions took about the same time, only lookup caused a slightly higher (approx. +20%) memory consumption.&lt;/P&gt;&lt;P&gt;Perhaps I should give lookup() another chance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 21:58:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142251#M716631</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-04-23T21:58:44Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142252#M716632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good lookup!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 22:07:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142252#M716632</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2009-04-23T22:07:27Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142253#M716633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Folks,&lt;/P&gt;&lt;P&gt;considering the interest this post had generated, and inspired by Rob's blog entry, I decided to write a Wiki page based on this material. Feel free to check it out!&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 09:43:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142253#M716633</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-04-24T09:43:32Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142254#M716634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I compared retrieving lookup fields from 2 tables, into a big one (1 500 000 records).&lt;/P&gt;&lt;P&gt;In that case,&lt;B&gt;"lookup" is 4 times slower&lt;/B&gt; (2 mn) than a classic "left join" (30 sec.).&lt;/P&gt;&lt;P&gt;Certainly a "join" retrieve similar field values once, which is faster, whereas lookup search is performed on each record. i.e. if you have 100 unique machines IDs in a 1000000 records table, join will search and retrieve 100 Machine speeds records, lookup will repeat search and retrieve 1000000 times.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 14:27:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142254#M716634</guid>
      <dc:creator>yblake</dc:creator>
      <dc:date>2009-04-24T14:27:38Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142255#M716635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Join should be always faster. Best case would be a join and calculation on database level in the SQL query itself. But, if you have several data sources you would need an alternative.&lt;/P&gt;&lt;P&gt;Join in QV and calculation in a second load (see above) could lead into a out of memory problem because data are duplicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 16:30:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142255#M716635</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2009-04-24T16:30:06Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142256#M716636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have avoided lookup because I found it to be extremly slow. Inspired by this post, I thought I would benchmark it again. I still found it very slow for large datasets. My tests were with 8.50.6206. The test was to multiply a quantity in the Orders table times the Price from the Items table. Orders was always 10 times the size of Items with an even distribution of Items.&lt;/P&gt;&lt;P&gt;I compared the ApplyMap() technique with the lookup(). Here's my results.&lt;/P&gt;&lt;P&gt;ItemCount | OrderCount | ApplyMap Seconds | Lookup() Seconds&lt;/P&gt;&lt;P&gt;5,000 | 50,000 | 0.59 | 2.47&lt;BR /&gt;50,000 | 500,000 | 6 | 179&lt;/P&gt;&lt;P&gt;Lookup() performance seemed to degrade with an increase in the looked-up table (Items). This seems to suggest that Lookup does not use an index to perform the search?&lt;/P&gt;&lt;P&gt;Attached is my test QVW if anyone wants to try to replicate (or improve) my results.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Apr 2009 02:29:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142256#M716636</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-04-25T02:29:08Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142257#M716637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oleg,&lt;/P&gt;&lt;P&gt;Great wiki entry. Thanks for posting it!&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Apr 2009 02:33:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142257#M716637</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-04-25T02:33:11Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142258#M716638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob, appreciate your feedback!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I'm too lazy to organize a blog like yours, I guess I'll specialize in writing Wikis.&lt;/P&gt;&lt;P&gt;If anyone has ideas about a good Wiki topic - shoot it to me, I'll try to write about it.&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Apr 2009 02:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142258#M716638</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-04-25T02:39:51Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142259#M716639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to everybody!!&lt;/P&gt;&lt;P&gt;I spent two days reviewing all of your answers and some of them are too advanced for me, but the mapping method seems to work very Good!!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;HS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 May 2009 04:07:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142259#M716639</guid>
      <dc:creator />
      <dc:date>2009-05-01T04:07:29Z</dc:date>
    </item>
    <item>
      <title>Multiply two fields from different tables</title>
      <link>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142260#M716640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried using the ApplyMap recommendation that you posted above. I am clearly not translating your code correctly. I want to create two new fields (without creating a new table) to add to Table Two:&lt;/P&gt;&lt;P&gt;1) [Issue Age] x [Initial Face Amounts]&lt;/P&gt;&lt;P&gt;2) [Issue Age] x [Death Benefits]&lt;/P&gt;&lt;P&gt;Here is what I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table_1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Policy Number],&lt;/P&gt;&lt;P&gt;Mode,&lt;/P&gt;&lt;P&gt;[Death Benefit Option]&lt;/P&gt;&lt;P&gt;[Issue Age],&lt;/P&gt;&lt;P&gt;[Account Value],&lt;/P&gt;&lt;P&gt;[Loan Balance],&lt;/P&gt;&lt;P&gt;[Count]&lt;/P&gt;&lt;P&gt;FROM inv11006.qvd (qvd);&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Table_2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Policy Number],&lt;/P&gt;&lt;P&gt;[Death Benefits],&lt;/P&gt;&lt;P&gt;[Initial Face Amounts],&lt;/P&gt;&lt;P&gt;[Coverage Count]&lt;/P&gt;&lt;P&gt;FROM inv21006.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;AgeFaceBenefitsMap:&lt;/P&gt;&lt;P&gt;mapping load&lt;/P&gt;&lt;P&gt;[Policy Number],&lt;BR /&gt;[Issue Age]&lt;/P&gt;&lt;P&gt;resident Table_1;&lt;BR /&gt;load&lt;/P&gt;&lt;P&gt;[Initial Face Amounts],&lt;/P&gt;&lt;P&gt;[Death Benefits],&lt;/P&gt;&lt;P&gt;[Initial Face Amounts] * ApplyMap('AgeFaceBenefitsMap', [Issue Age], 0) as AgeFace,&lt;/P&gt;&lt;P&gt;[Death Benefits] * ApplyMap('AgeFaceBenefitsMap', [Issue Age], 0) as AgeDeathBen&lt;BR /&gt;&lt;BR /&gt;resident Table_2;&lt;/P&gt;&lt;P&gt;Your response is greatly appreciated!&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ellen&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 20:01:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiply-two-fields-from-different-tables/m-p/142260#M716640</guid>
      <dc:creator>bullish35</dc:creator>
      <dc:date>2010-10-08T20:01:21Z</dc:date>
    </item>
  </channel>
</rss>

