<?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: Replace Null values with data from other column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510610#M1135851</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are the values actually NULL, or empty strings? What is your data source?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If they are empty then this may work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(ISNULL(ColumnA) OR ColumnA = '',ColumnB,ColumnA) as ColumnA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Oct 2013 11:51:48 GMT</pubDate>
    <dc:creator>marcus_malinow</dc:creator>
    <dc:date>2013-10-23T11:51:48Z</dc:date>
    <item>
      <title>Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510604#M1135844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I replace null values from column A with values From column B?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510604#M1135844</guid>
      <dc:creator />
      <dc:date>2013-10-23T11:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510605#M1135846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how about this in your load script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(ISNULL(ColumnA),ColumnB,ColumnA) as ColumnA&lt;/P&gt;&lt;P&gt;Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:25:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510605#M1135846</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2013-10-23T11:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510606#M1135847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe you can suppress the null values so that they are not displyed in the table/chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:29:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510606#M1135847</guid>
      <dc:creator />
      <dc:date>2013-10-23T11:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510607#M1135848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is number then use Alt(ColumnA, ColumnB)&lt;/P&gt;&lt;P&gt;otherwise you have to use &lt;A href="https://community.qlik.com/qlik-users/26760"&gt;Marcus Malinow&lt;/A&gt; suggestion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:29:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510607#M1135848</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2013-10-23T11:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510608#M1135849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess Marcus Malinow's solution will do the trick.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510608#M1135849</guid>
      <dc:creator />
      <dc:date>2013-10-23T11:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510609#M1135850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sadly it does not work. Its a date. For planning production I have DeliveryDate and ExtendedDeliveryDate. As I need to show how the planned deliveries are performing I need to use ExtendedDeliveryDate if there is one, otherwise I need to use DeliveryDate. I was planning to put data from DeliveryDate into null values of ExtendedDeliveryDate so my charts would be more precise. Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:37:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510609#M1135850</guid>
      <dc:creator />
      <dc:date>2013-10-23T11:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Null values with data from other column</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510610#M1135851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are the values actually NULL, or empty strings? What is your data source?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If they are empty then this may work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(ISNULL(ColumnA) OR ColumnA = '',ColumnB,ColumnA) as ColumnA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2013 11:51:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-Null-values-with-data-from-other-column/m-p/510610#M1135851</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2013-10-23T11:51:48Z</dc:date>
    </item>
  </channel>
</rss>

