<?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: Showing blank for Unwanted values in Table object in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1854925#M70569</link>
    <description>&lt;P&gt;Hi Abhijit,&lt;/P&gt;
&lt;P&gt;The 2nd field is derived one and it's coming from a table which is associated with the table consisting 1st field&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Nov 2021 03:09:47 GMT</pubDate>
    <dc:creator>aatish12345</dc:creator>
    <dc:date>2021-11-03T03:09:47Z</dc:date>
    <item>
      <title>Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852889#M70427</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;Currently in table object of Qlik Sense, if we use 2 fields and if 2nd field don't have relevant data for the data of 1st field, then by default it will show as "-" (dash) and grey bg color for such cells in the column.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For such non relevant data I want to show it as blank with white space instead of dash and grey bg color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone plz help to achieve it&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2021 07:28:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852889#M70427</guid>
      <dc:creator>aatish12345</dc:creator>
      <dc:date>2021-10-28T07:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852945#M70432</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/95761"&gt;@aatish12345&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Do you have used any expression to derive a 2nd field or its coming from the database&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2021 09:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852945#M70432</guid>
      <dc:creator>abhijitnalekar</dc:creator>
      <dc:date>2021-10-28T09:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852950#M70433</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/95761"&gt;@aatish12345&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please use the below lines before loading the table. These lines converts the nulls into values&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;NullAsValue FIeld2;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Set NullValue = ' ';&amp;nbsp; // Added space as per the requirement&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Reference Link:&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptRegularStatements/NullAsValue.htm" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptR...&lt;/A&gt;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Hope this solution helps you!&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2021 09:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852950#M70433</guid>
      <dc:creator>njc_96</dc:creator>
      <dc:date>2021-10-28T09:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852954#M70434</link>
      <description>&lt;P&gt;In the beginning of your load script you can set display text for null values.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NullAsValue revenue;&lt;BR /&gt;set NullValue = '&amp;lt;no revenue&amp;gt;';&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;NullAsValue budget;&lt;BR /&gt;set NullValue = '&amp;lt;no budget&amp;gt;';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if it's for an expression on your front-end you can use alt (alt must take a numeric response) or if isnull.&lt;/P&gt;
&lt;P&gt;alt(max(revenue), '')&lt;/P&gt;
&lt;P&gt;if(isnull([text field]),'', [text field])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Oct 2021 09:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1852954#M70434</guid>
      <dc:creator>stevejoyce</dc:creator>
      <dc:date>2021-10-28T09:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1853401#M70467</link>
      <description>&lt;P&gt;Yes in the load script I am deriving new fields by using already loaded fields&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;</description>
      <pubDate>Fri, 29 Oct 2021 05:27:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1853401#M70467</guid>
      <dc:creator>aatish12345</dc:creator>
      <dc:date>2021-10-29T05:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1853414#M70468</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/95761"&gt;@aatish12345&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also use the&amp;nbsp;&lt;EM&gt;COALESCE&lt;/EM&gt;&lt;SPAN&gt;()&amp;nbsp;function to replace the null values for the specific field.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;eg.&amp;nbsp;&lt;EM&gt;COALESCE(Field2,''Others) as Field2&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Oct 2021 06:13:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1853414#M70468</guid>
      <dc:creator>abhijitnalekar</dc:creator>
      <dc:date>2021-10-29T06:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1853495#M70472</link>
      <description>&lt;P&gt;Hi all, thanks for the help..&lt;/P&gt;
&lt;P&gt;I 1st tried using NullasValue then I tried if(isnull(field2),'',field2) , but in both the case I got more no. of records which are not matching with my original code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;</description>
      <pubDate>Fri, 29 Oct 2021 07:55:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1853495#M70472</guid>
      <dc:creator>aatish12345</dc:creator>
      <dc:date>2021-10-29T07:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Showing blank for Unwanted values in Table object</title>
      <link>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1854925#M70569</link>
      <description>&lt;P&gt;Hi Abhijit,&lt;/P&gt;
&lt;P&gt;The 2nd field is derived one and it's coming from a table which is associated with the table consisting 1st field&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Aatish&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 03:09:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Showing-blank-for-Unwanted-values-in-Table-object/m-p/1854925#M70569</guid>
      <dc:creator>aatish12345</dc:creator>
      <dc:date>2021-11-03T03:09:47Z</dc:date>
    </item>
  </channel>
</rss>

