<?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 How to express if cell is not empty? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764889#M718050</link>
    <description>&lt;P&gt;So I want to get the cells, which are not empty. I tried&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=if(isnull(col),col)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but this is the completely opposite of what I want&lt;/P&gt;&lt;P&gt;I want it like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=if(!isnull(col),col)&lt;/LI-CODE&gt;</description>
    <pubDate>Sat, 16 Nov 2024 17:46:09 GMT</pubDate>
    <dc:creator>jisephcirspy</dc:creator>
    <dc:date>2024-11-16T17:46:09Z</dc:date>
    <item>
      <title>How to express if cell is not empty?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764889#M718050</link>
      <description>&lt;P&gt;So I want to get the cells, which are not empty. I tried&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=if(isnull(col),col)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but this is the completely opposite of what I want&lt;/P&gt;&lt;P&gt;I want it like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=if(!isnull(col),col)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764889#M718050</guid>
      <dc:creator>jisephcirspy</dc:creator>
      <dc:date>2024-11-16T17:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to express if cell is not empty?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764890#M718051</link>
      <description>&lt;P&gt;May be this?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If(Len(Trim(Col)) = 0, 1) AS EmptyCol&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;if(isnull(fieldName),fieldName)&amp;nbsp; as fieldName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(fieldName=' ',fieldName)&amp;nbsp; as fieldName&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(len(fieldName)=0' ',fieldName)&amp;nbsp; as fieldName&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 09:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764890#M718051</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2020-11-27T09:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to express if cell is not empty?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764892#M718052</link>
      <description>&lt;P&gt;Hi Jisephcirspy,&lt;/P&gt;&lt;P&gt;You can try below expression:&lt;/P&gt;&lt;P&gt;=If(ISNULL(Col),,Col)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 09:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764892#M718052</guid>
      <dc:creator>vinni</dc:creator>
      <dc:date>2020-11-27T09:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to express if cell is not empty?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764893#M718053</link>
      <description>&lt;P&gt;no, this doesn't solve the problem &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 09:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764893#M718053</guid>
      <dc:creator>jisephcirspy</dc:creator>
      <dc:date>2020-11-27T09:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to express if cell is not empty?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764894#M718054</link>
      <description>&lt;P&gt;it gives me an error...&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 09:46:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764894#M718054</guid>
      <dc:creator>jisephcirspy</dc:creator>
      <dc:date>2020-11-27T09:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to express if cell is not empty?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764902#M718055</link>
      <description>&lt;P&gt;try this way&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NULLASVALUE&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;*;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(IsNull(Col1), 'Not Available', ' ')&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;as&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;[Not Available];&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 09:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-express-if-cell-is-not-empty/m-p/1764902#M718055</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2020-11-27T09:56:15Z</dc:date>
    </item>
  </channel>
</rss>

