<?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: value require from two column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844539#M656235</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alt() will handle blank amounts as well as NULL.&lt;/P&gt;&lt;P&gt;ISNULL() will only work with NULL,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jun 2015 09:24:54 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2015-06-08T09:24:54Z</dc:date>
    <item>
      <title>value require from two column</title>
      <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844535#M656231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have vendore wise two amount column- 1st is "invoice_amount" and 2nd is currency_conerted_amount &lt;/P&gt;&lt;P&gt;now i wants to generate one new column with this expression -(&amp;nbsp; i want "currency_conerted_amount "&amp;nbsp; againsed vendor and if it is null then value should be put from " invoice_ amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help to generate this new column &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 08:35:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844535#M656231</guid>
      <dc:creator>yadav_anil782</dc:creator>
      <dc:date>2015-06-08T08:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: value require from two column</title>
      <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844536#M656232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load if(len(trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;currency_conerted_amount&lt;/SPAN&gt;))=0,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;invoice_ amount,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;currency_conerted_amount ) as newColumn&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 08:46:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844536#M656232</guid>
      <dc:creator>qlikmsg4u</dc:creator>
      <dc:date>2015-06-08T08:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: value require from two column</title>
      <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844537#M656233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For questions like this it would be great to know if you are looking for a script solution or a chart object solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple sample document with a few lines of data will also make it a lot easier for someone to provide a suggestion that fits your purpose. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 08:48:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844537#M656233</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-06-08T08:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: value require from two column</title>
      <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844538#M656234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"currency_conerted_amount" or &lt;SPAN style="font-size: 13.3333330154419px;"&gt;"currency_con&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;v&lt;/STRONG&gt;&lt;/SPAN&gt;erted_amount"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&amp;nbsp; (assuming you want this new column created in your load script):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;IF (IsNull(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;currency_conerted_amount), &lt;SPAN style="color: #3d3d3d; font-size: 13px;"&gt;invoice_amount&lt;/SPAN&gt;, &lt;SPAN style="font-size: 13.3333330154419px;"&gt;currency_conerted_amount) AS third_amount,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: arial, helvetica, sans-serif;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Alt(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;currency_conerted_amount, &lt;SPAN style="color: #3d3d3d; font-size: 13px;"&gt;invoice_amount&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;) AS third_amount,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;This will handle only NULL values (as per your specification), not zero or blank amounts...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-family: 'courier new', courier;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Peter&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 08:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844538#M656234</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-06-08T08:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: value require from two column</title>
      <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844539#M656235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alt() will handle blank amounts as well as NULL.&lt;/P&gt;&lt;P&gt;ISNULL() will only work with NULL,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 09:24:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844539#M656235</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-06-08T09:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: value require from two column</title>
      <link>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844540#M656236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, yes you're right, Jonathan. Alt() will handle everything that doesn't look like a number. Even text strings...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 10:09:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/value-require-from-two-column/m-p/844540#M656236</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-06-08T10:09:54Z</dc:date>
    </item>
  </channel>
</rss>

