<?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: How to convert QlikSense table sheet null values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2014176#M83818</link>
    <description>&lt;P&gt;It didn't work out.&lt;/P&gt;
&lt;P&gt;Is there any other way?&lt;/P&gt;</description>
    <pubDate>Thu, 08 Dec 2022 06:33:09 GMT</pubDate>
    <dc:creator>qwebnm</dc:creator>
    <dc:date>2022-12-08T06:33:09Z</dc:date>
    <item>
      <title>How to convert QlikSense table sheet null values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2013539#M83774</link>
      <description>&lt;P&gt;In a QlikSense table sheet, I want to convert null values to 1 and all remaining values to 2.&lt;BR /&gt;I'm trying a lot, but I can't convert.&lt;/P&gt;
&lt;P&gt;If you look at the sheet, only that column comes out dark.&lt;BR /&gt;Is it something other than null values?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="seheon_1-1670398606000.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/95592i426F0364CF4751D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="seheon_1-1670398606000.png" alt="seheon_1-1670398606000.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Searching with a magnifying glass doesn't even come up with values&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="seheon_4-1670399500425.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/95597i6ACBAFF4BCB9AB1F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="seheon_4-1670399500425.png" alt="seheon_4-1670399500425.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;tested script&amp;gt;&lt;/P&gt;
&lt;P&gt;=If((Value=null()), 1,2)&lt;BR /&gt;=If((Value=Null), 1,2)&lt;BR /&gt;=If((Value=0), 1,2)&lt;BR /&gt;=If((Value='-'), 1,2)&lt;BR /&gt;=If(len(trim(Value))= 0, 1,2)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What should I do?&lt;BR /&gt;Let me know if you know how!&lt;/P&gt;
&lt;P&gt;Thanks you!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 07:53:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2013539#M83774</guid>
      <dc:creator>qwebnm</dc:creator>
      <dc:date>2022-12-07T07:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert QlikSense table sheet null values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2013568#M83777</link>
      <description>&lt;P&gt;It may well be that these are "missing values" - that the entire row is missing in a table. Then these combinations aren't included in the calculation algorithm.&lt;/P&gt;&lt;P&gt;See&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Design/The-Importance-of-Nothing/ba-p/1464900" target="_blank"&gt;https://community.qlik.com/t5/Design/The-Importance-of-Nothing/ba-p/1464900&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Design/NULL-The-Invisible-Nothing/ba-p/1467674" target="_blank"&gt;https://community.qlik.com/t5/Design/NULL-The-Invisible-Nothing/ba-p/1467674&lt;/A&gt;&lt;/P&gt;&lt;P&gt;See also attached white paper.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 08:41:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2013568#M83777</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2022-12-07T08:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert QlikSense table sheet null values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2013571#M83779</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/165557"&gt;@qwebnm&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you could try&lt;/P&gt;
&lt;P&gt;if(isnull(&lt;SPAN&gt;Value),1,2&lt;/SPAN&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this works for you&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 08:46:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2013571#M83779</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2022-12-07T08:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert QlikSense table sheet null values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2014176#M83818</link>
      <description>&lt;P&gt;It didn't work out.&lt;/P&gt;
&lt;P&gt;Is there any other way?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 06:33:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2014176#M83818</guid>
      <dc:creator>qwebnm</dc:creator>
      <dc:date>2022-12-08T06:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert QlikSense table sheet null values</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2014200#M83819</link>
      <description>&lt;P&gt;I read the message you sent, but I'm still not sure how to solve it.&lt;/P&gt;
&lt;P&gt;Can you explain in a bit more detail?&lt;/P&gt;
&lt;P&gt;please..&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 07:25:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-convert-QlikSense-table-sheet-null-values/m-p/2014200#M83819</guid>
      <dc:creator>qwebnm</dc:creator>
      <dc:date>2022-12-08T07:25:55Z</dc:date>
    </item>
  </channel>
</rss>

