<?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 How to add two numerical fields together in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755919#M1050034</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have Software amount and Services amount -- want to create a new field that adds the number values together across each row. A total deal value field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Nov 2014 14:01:41 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-03T14:01:41Z</dc:date>
    <item>
      <title>How to add two numerical fields together</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755919#M1050034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have Software amount and Services amount -- want to create a new field that adds the number values together across each row. A total deal value field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 14:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755919#M1050034</guid>
      <dc:creator />
      <dc:date>2014-11-03T14:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to add two numerical fields together</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755920#M1050035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SoftwareAmount,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ServicesAmount,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SoftwareAmount + &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ServicesAmount As DealValue&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;From Table&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 14:04:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755920#M1050035</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-11-03T14:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to add two numerical fields together</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755921#M1050036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load .....,&lt;/P&gt;&lt;P&gt;SoftwareField+ServicesField as DealField,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 14:04:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755921#M1050036</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-11-03T14:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to add two numerical fields together</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755922#M1050037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In your script in the table where you get your original fields Software amount and Services amount add a new field DealValue.&lt;/P&gt;&lt;P&gt;You can keep Software amount and Services amount if needed otherwise you can leave them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FinalTable: &lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SoftwareAmount, // if you don't need this field anymore just forget this line&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ServicesAmount, // if you don't need this field anymore just forget this line&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;(SoftwareAmount + &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ServicesAmount) as DealValue&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;From &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;YourTable&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Nov 2014 14:11:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-two-numerical-fields-together/m-p/755922#M1050037</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-03T14:11:34Z</dc:date>
    </item>
  </channel>
</rss>

