<?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: Replacing Null text values with a value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387637#M485056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sujeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain how to handle this scenario in script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Sep 2017 20:59:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-09-13T20:59:25Z</dc:date>
    <item>
      <title>Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387630#M485049</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;I am trying to replace blank text field values using the following expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(WildMatch([Text],'*NULL*'),'Testing',[Text])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason this formula does not work and blank rows were not replaces with 'Texting'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 15:33:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387630#M485049</guid>
      <dc:creator />
      <dc:date>2013-05-20T15:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387631#M485050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull(text), 'Testing', text)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 15:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387631#M485050</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-05-20T15:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387632#M485051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesnt work. Any other options?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 May 2013 16:09:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387632#M485051</guid>
      <dc:creator />
      <dc:date>2013-05-20T16:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387633#M485052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(len(trim(text))=0, 'Testing', text)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 11:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387633#M485052</guid>
      <dc:creator>arbernardez_old</dc:creator>
      <dc:date>2013-11-22T11:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387634#M485053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Zhenya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It may be that these are not null values on a row (where the if(isnull syntax would work) rather places where there are no values due to associations between tables not joining up?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In these cases you can't easily populate values, but there are usually ways around it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please give a bit more detail about your data model and where you want the Nulls replaced?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 12:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387634#M485053</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2013-11-22T12:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387635#M485054</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try this, &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: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;if(IsNull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Text&lt;/SPAN&gt;) or &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Text&lt;/SPAN&gt;= '', 'Testing', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Text&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashutosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 12:02:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387635#M485054</guid>
      <dc:creator />
      <dc:date>2013-11-22T12:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387636#M485055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve you are right man it is the data model issue&amp;nbsp; and hence need to handle in script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2013 12:06:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387636#M485055</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2013-11-22T12:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387637#M485056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sujeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain how to handle this scenario in script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2017 20:59:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387637#M485056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-13T20:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387638#M485057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One option could be this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Set Nullinterpret = 'NULL';&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;NullasValue *; // You can define the fields&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: small;"&gt;Set NullValue = 'Testing';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 02:50:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387638#M485057</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-09-14T02:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387639#M485058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart Expression:&lt;/P&gt;&lt;P&gt;=IF(Len(Trim(Dim))=0,'N/A',Dim)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even in script also we can use&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 04:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387639#M485058</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2017-09-14T04:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387640#M485059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can try this:&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;In chart Expression:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=IF(Len(Trim(Dim))=0,'N/A',Dim)&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;Even in script also we can use&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 05:19:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387640#M485059</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2017-09-14T05:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387641#M485060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if( len([Text] &amp;lt; 0, 'Testing', [Text])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 06:15:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387641#M485060</guid>
      <dc:creator>afsarshaikh</dc:creator>
      <dc:date>2017-09-14T06:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Null text values with a value</title>
      <link>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387642#M485061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Might be worth to challenge your datamodel.&lt;/P&gt;&lt;P&gt;Are you supposed to have missing entries, or can you fix somehow in the script by reducing linked fields (e.g. using LEFT JOIN or LEFT KEEP).&lt;/P&gt;&lt;P&gt;Can you post an example in order to validate, whether it comes from data or from the datamodel?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2017 07:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replacing-Null-text-values-with-a-value/m-p/387642#M485061</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2017-09-14T07:31:40Z</dc:date>
    </item>
  </channel>
</rss>

