<?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: Blank values with expression? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568019#M1108352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if the ISNULL does not work, try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim(Instruction))=0, Instruction)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Mar 2014 16:47:10 GMT</pubDate>
    <dc:creator>agilos_mla</dc:creator>
    <dc:date>2014-03-12T16:47:10Z</dc:date>
    <item>
      <title>Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568015#M1108348</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 have straight table. I would need to show the values which have 'Instructions' with blanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the below expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; =If(Instruction='',Instruction)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will it gives the values only with blanks?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:40:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568015#M1108348</guid>
      <dc:creator />
      <dc:date>2014-03-12T16:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568016#M1108349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(ISNULL(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;Instruction&lt;/SPAN&gt;), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;Instruction&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568016#M1108349</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-12T16:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568017#M1108350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;a better way to identify the nulls and blanks is to use Len(Trim(&amp;lt;Field name&amp;gt;)) = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=If(Len(Trim(Instruction)))=0', 'Instruction')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568017#M1108350</guid>
      <dc:creator>srchilukoori</dc:creator>
      <dc:date>2014-03-12T16:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568018#M1108351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. Just wrote it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:45:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568018#M1108351</guid>
      <dc:creator />
      <dc:date>2014-03-12T16:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568019#M1108352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if the ISNULL does not work, try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim(Instruction))=0, Instruction)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568019#M1108352</guid>
      <dc:creator>agilos_mla</dc:creator>
      <dc:date>2014-03-12T16:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568020#M1108353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ISNULL() doesn't identify blank spaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:50:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568020#M1108353</guid>
      <dc:creator>srchilukoori</dc:creator>
      <dc:date>2014-03-12T16:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568021#M1108354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. it's not showing blanks . instead showing all. Any solution please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: will this works with table box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:08:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568021#M1108354</guid>
      <dc:creator />
      <dc:date>2014-03-12T17:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568022#M1108355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. This is not taking blank values. Any solution please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:14:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568022#M1108355</guid>
      <dc:creator />
      <dc:date>2014-03-12T17:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568023#M1108356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As always, give us your sample data !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:21:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568023#M1108356</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-12T17:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568024#M1108357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe it's a real white space: soft blanks (Chr(32)), hard blanks (Chr(160)), the tab character (Chr(09)) &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So try,&amp;nbsp; for soft blanks ,&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(len(trim(Instruction))=chr(32), Instruction)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:24:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568024#M1108357</guid>
      <dc:creator>agilos_mla</dc:creator>
      <dc:date>2014-03-12T17:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568025#M1108358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry please find attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568025#M1108358</guid>
      <dc:creator />
      <dc:date>2014-03-12T17:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568026#M1108359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please check...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568026#M1108359</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-12T17:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568027#M1108360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, if you want ID having NULL instruction...use below expression in list box expression...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(LEN(TRIM(Instruction))=0,ID)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568027#M1108360</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-12T17:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Blank values with expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568028#M1108361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. That's perfect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 17:57:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-values-with-expression/m-p/568028#M1108361</guid>
      <dc:creator />
      <dc:date>2014-03-12T17:57:22Z</dc:date>
    </item>
  </channel>
</rss>

