<?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: Missing values-Replace with string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947087#M959617</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/gwassenaar"&gt;gwassenaar&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN class="icon-status-icon icon-luminary" style="margin: 0 0 0 4px; font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;" title="Luminary"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;I applied your logic. But still it is showing&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;'-'&lt;/SPAN&gt; values for Country.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102824_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2015 15:25:25 GMT</pubDate>
    <dc:creator>qlikviewwizard</dc:creator>
    <dc:date>2015-10-22T15:25:25Z</dc:date>
    <item>
      <title>Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947083#M959613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have three tables in the data model. Getting the NULL values in my report for Country Name.&lt;/P&gt;&lt;P&gt;I want to show this missing values along with &lt;SPAN style="font-size: 13.3333px;"&gt;'AUSTRALIA' and 'JAPAN &lt;/SPAN&gt;as TECHNO.&lt;/P&gt;&lt;P&gt;script:&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Cn_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cn_Name as Cn_Name_Original,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if(WildMatch(Cn_Name,'AUSTRALIA','JAPAN','',' ','-') ,'TECHNO',Cn_Name) as Cn_Name &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Null_Values_Replace.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Country$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Tr_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tr_Name&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Null_Values_Replace.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Region$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Cn_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tr_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cust_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tr&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Null_Values_Replace.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Customer$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102817_Capture.PNG" style="height: 415px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 14:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947083#M959613</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-10-22T14:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947084#M959614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try If(match(Cn_Name, 'AUSTRALIA','JAPAN','-') or len(trim(Cn_Name))=0, 'TECHNO',Cn_Name) as Cn_Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Len(Trim(..)) construction will not only replace null values but also empty strings and values that contain only spaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 14:21:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947084#M959614</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-10-22T14:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947085#M959615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if(WildMatch(Cn_Name,'AUSTRALIA','JAPAN','',' ','-')&lt;STRONG&gt; or isNull(Cn_Name)&lt;/STRONG&gt; ,'TECHNO',Cn_Name) as Cn_Name &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 14:21:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947085#M959615</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2015-10-22T14:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947086#M959616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use QlikView null-handling functionality, such as NullAsValue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out my new book &lt;EM&gt;QlikView Your Business&lt;/EM&gt;. I describe there in detail how to deal with NULL values (among many other developer techniques).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.amazon.com/gp/product/1118949552/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1118949552&amp;amp;linkCode=as2&amp;amp;tag=natursyner0f-20&amp;amp;linkId=2HM6CA4PAZX4PLOX" rel="nofollow"&gt;QlikView Your Business: An expert guide to Business Discovery with QlikView and Qlik Sense&lt;/A&gt;&lt;IMG alt="" border="0" height="1" src="http://ir-na.amazon-adsystem.com/e/ir?t=natursyner0f-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=1118949552" style="border: none !important; margin: 0px !important;" width="1" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 14:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947086#M959616</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2015-10-22T14:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947087#M959617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/gwassenaar"&gt;gwassenaar&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN class="icon-status-icon icon-luminary" style="margin: 0 0 0 4px; font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;" title="Luminary"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;I applied your logic. But still it is showing&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;'-'&lt;/SPAN&gt; values for Country.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102824_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 15:25:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947087#M959617</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-10-22T15:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947088#M959618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't help you without the source data. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2015 15:43:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947088#M959618</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-10-22T15:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947089#M959619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arjun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try Mapping Load in the third table and remove first table.&amp;nbsp; This will fix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2015 07:24:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947089#M959619</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-10-23T07:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947090#M959620</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;Try this script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MapCountry:&lt;/P&gt;&lt;P&gt;Mapping Load&lt;/P&gt;&lt;P&gt; Cn_Key,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;if(WildMatch(Cn_Name,'AUSTRALIA','JAPAN','',' ','-') ,'TECHNO',Cn_Name) as Cn_Name &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Null_Values_Replace.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Country$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Tr_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tr_Name&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Null_Values_Replace.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Region$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Cn_Key,&lt;/P&gt;&lt;P&gt;&amp;nbsp; ApplyMap('MapCountry',&amp;nbsp; Cn_Key, 'TECHNO') AS Cn_Name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tr_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cust_Key, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tr&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Null_Values_Replace.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Customer$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2015 07:26:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947090#M959620</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-10-23T07:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947091#M959621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" data-avatarid="-1" data-userid="23109" data-username="jagan" href="https://community.qlik.com/people/jagan" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; color: #3778c7;"&gt;jagan moha&lt;/A&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;Thank you so much for your out of box idea -mapping load.I added &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/gwassenaar"&gt;gwassenaar&lt;/A&gt;&lt;/STRONG&gt;'s advice as well in mapping table- &lt;SPAN style="font-size: 13.3333px;"&gt; len(trim(Cn_Name))=0 .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if(WildMatch(Cn_Name,'AUSTRALIA','JAPAN','',' ','-') or len(trim(Cn_Name))=0 ,'TECHNO',Cn_Name) as Cn_Name&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2015 08:42:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947091#M959621</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-10-23T08:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values-Replace with string</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947092#M959622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not able to reload your application so I implemented my logic in calculated dimension. I think, if you do the same in script, it will work.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qlik.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102900_qlik.png" style="width: 620px; height: 456px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2015 08:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-values-Replace-with-string/m-p/947092#M959622</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2015-10-23T08:43:59Z</dc:date>
    </item>
  </channel>
</rss>

