<?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: null values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357398#M839947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil, &lt;/P&gt;&lt;P&gt;I want to remove the null values&amp;nbsp; also here .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 May 2017 13:08:57 GMT</pubDate>
    <dc:creator>smilingjohn</dc:creator>
    <dc:date>2017-05-03T13:08:57Z</dc:date>
    <item>
      <title>null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357394#M839943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Iam using below code in the script to tag all brands which has "Tdepartment" in it , along with this i&amp;nbsp; want eliminate null values &lt;/P&gt;&lt;P&gt;how do i include that in the below script . &lt;/P&gt;&lt;P&gt;if(WildMatch(VM_Model,'*Tdepartment*'),'Tdepartment Only') as Tdepart, &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thans in advance &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357394#M839943</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357395#M839944</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; font-size: 13px;"&gt;May be this would help you:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(WildMatch(VM_Model,'*Tdepartment*') &lt;STRONG&gt;or Len(Trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;VM_Model&lt;/SPAN&gt;)) = 0&lt;/STRONG&gt;,'Tdepartment Only') as Tdepart,&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 12:55:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357395#M839944</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2017-05-03T12:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357396#M839945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't understand your intend here. You already written the text search so you have some values with that. What you mean to remove the null values over here. May be use with OR Operator any one of below&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;If(Len(Trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;VM_Model&lt;/SPAN&gt;))&amp;gt;0,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;VM_Model&lt;/SPAN&gt;)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Len(Purgechar(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;VM_Model&lt;/SPAN&gt;, chr(32) &amp;amp; chr(160)))&amp;gt;0,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;VM_Model&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 12:58:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357396#M839945</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-03T12:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357397#M839946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you can take resident of the table with a where condition: Where not isNull(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Tdepart) or use this condition in precedence load.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 12:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357397#M839946</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2017-05-03T12:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357398#M839947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil, &lt;/P&gt;&lt;P&gt;I want to remove the null values&amp;nbsp; also here .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:08:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357398#M839947</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2017-05-03T13:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357399#M839948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by saying "remove"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you need to remove them from your table or change null values to something?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357399#M839948</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2017-05-03T13:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357400#M839949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anil please find the attachment &lt;/P&gt;&lt;P&gt;here if you look i am getting a null, values also , i dont know why it is aapearing two time one with&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Tdepartment Only&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(iPerformance Only) and exactly below that its null , &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;so i want to remove the null values ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;i hope you understand it now ... &lt;IMG alt="cap.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/162041_cap.PNG" style="height: auto;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357400#M839949</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2017-05-03T13:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357401#M839950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this? and operator consider as If condition full fills it will returns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(WildMatch(VM_Model,'*Tdepartment*') and If(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;VM_Model&lt;/SPAN&gt;))&amp;gt;0,&lt;SPAN style="font-style: inherit;"&gt;VM_Model&lt;/SPAN&gt;),'Tdepartment Only') as Tdepart,&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:16:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357401#M839950</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-03T13:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357402#M839951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are both dimensions from the same table?&lt;/P&gt;&lt;P&gt;Might be something wrong with joins in your data model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357402#M839951</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2017-05-03T13:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357403#M839952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anile i have kept you sugested script to run ( reloading ) &lt;/P&gt;&lt;P&gt;can you please tell me what is this going to do ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:40:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357403#M839952</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2017-05-03T13:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357404#M839953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mandaugas &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;They are from different table &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:40:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357404#M839953</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2017-05-03T13:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357405#M839954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil after the loading of the script now it show completely null values as shown in the script ...&lt;/P&gt;&lt;P&gt;i dont see &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Tdepartment&amp;nbsp; at all .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;IMG alt="cap1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/162042_cap1.PNG" style="height: auto;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 13:58:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357405#M839954</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2017-05-03T13:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357406#M839955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you able to share sample application?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 14:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357406#M839955</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-03T14:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357407#M839956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or Can you do Suppress Null value from dimension and Presentation tab may be??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 14:16:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357407#M839956</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-03T14:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357408#M839957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;Yes suppressing works perfectly at the dimesion level ...&lt;/P&gt;&lt;P&gt;But still i wanted to confirm&amp;nbsp; that if i can suppress this values witin the expression in the edit script ?&lt;/P&gt;&lt;P&gt;If you think its not required then it fine ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 14:21:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357408#M839957</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2017-05-03T14:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: null values</title>
      <link>https://community.qlik.com/t5/QlikView/null-values/m-p/1357409#M839958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's possible in script as well. If you would provide sample data we may help you. I would highly recommend you to Mark as helpful or correct answer if you got solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 May 2017 14:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/null-values/m-p/1357409#M839958</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-03T14:25:53Z</dc:date>
    </item>
  </channel>
</rss>

